/* Marketing Hub — scoped styles (removable with /marketing-hub/) */
:root {
  --mh-cream: #F4F7F4;
  --mh-forest: #0F3D32;
  --mh-forest-deep: #082820;
  --mh-gold: #B8943F;
  --mh-soft: #3A4A43;
  --mh-line: rgba(15, 61, 50, 0.12);
  --mh-card: #ffffff;
  --mh-display: "Syne", sans-serif;
  --mh-body: "Plus Jakarta Sans", sans-serif;
}

* { box-sizing: border-box; }
body.mh {
  margin: 0;
  background: var(--mh-cream);
  color: var(--mh-forest-deep);
  font-family: var(--mh-body);
  line-height: 1.55;
  min-height: 100vh;
}
.mh a { color: inherit; text-decoration: none; }
.mh h1, .mh h2, .mh h3 {
  font-family: var(--mh-display);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--mh-forest);
  margin: 0 0 0.4em;
}
.mh-shell { max-width: 960px; margin: 0 auto; padding: 24px 20px 64px; }
.mh-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--mh-line);
}
.mh-nav .brand { font-family: var(--mh-display); font-weight: 700; color: var(--mh-forest); }
.mh-nav .links { display: flex; gap: 14px; flex-wrap: wrap; font-size: 14px; }
.mh-nav .links a { color: var(--mh-soft); }
.mh-nav .links a.active { color: var(--mh-forest); font-weight: 600; }
.mh-eyebrow { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mh-gold); font-weight: 600; margin-bottom: 8px; }
.mh-card {
  background: var(--mh-card);
  border: 1px solid var(--mh-line);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 16px;
  box-shadow: 0 12px 32px rgba(8, 40, 32, 0.05);
}
.mh-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); margin: 18px 0; }
.mh-tile { background: #fff; border: 1px solid var(--mh-line); border-radius: 14px; padding: 16px; }
.mh-tile .val { font-family: var(--mh-display); font-size: 28px; color: var(--mh-forest); }
.mh-tile .lbl { font-size: 12px; color: var(--mh-soft); margin-top: 4px; }
.mh-banner {
  border-radius: 14px; padding: 14px 16px; margin-bottom: 18px; font-size: 14px;
}
.mh-banner.action { background: rgba(184, 148, 63, 0.15); border: 1px solid rgba(184, 148, 63, 0.35); }
.mh-banner.ok { background: rgba(95, 143, 120, 0.12); border: 1px solid rgba(95, 143, 120, 0.3); }
.mh-btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: none; border-radius: 999px; padding: 12px 20px; font-weight: 600; cursor: pointer;
  font-family: inherit; font-size: 14px;
}
.mh-btn-primary { background: var(--mh-forest); color: #fff; }
.mh-btn-ghost { background: transparent; border: 1px solid var(--mh-line); color: var(--mh-forest); }
.mh-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.mh-btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.mh label { display: block; font-size: 13px; color: var(--mh-soft); margin: 12px 0 6px; }
.mh input, .mh textarea {
  width: 100%; border: 1px solid var(--mh-line); border-radius: 12px; padding: 12px 14px;
  font: inherit; background: #fff; color: var(--mh-forest-deep);
}
.mh textarea { min-height: 88px; resize: vertical; }
.mh .error { color: #9b1c1c; font-size: 14px; margin-top: 10px; }
.mh .muted { color: var(--mh-soft); font-size: 14px; }
.mh .list { margin: 0; padding-left: 18px; color: var(--mh-soft); }
.mh .list li { margin-bottom: 6px; }
.mh-artifact-type {
  display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--mh-gold); font-weight: 700; margin-bottom: 6px;
}
.mh-hidden { display: none !important; }
@media (max-width: 640px) {
  .mh-nav { flex-direction: column; align-items: flex-start; }
}
