/* ─── MBV Group — Shared Brand Tokens & Utilities ─────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Anton&family=Manrope:wght@300;400;500;600;700&family=Inter+Tight:wght@400;500;600&family=Caveat:wght@400;500;700&display=swap');

:root {
  /* ── Palette (from MBV mark) ───────────────────────────── */
  --paper:        #F0EBE0;
  --paper-2:      #E5DECC;
  --paper-3:      #DCD3BD;
  --ink:          #14110E;
  --ink-2:        #2D2924;
  --ink-3:        #4A4339;
  --muted:        #807868;
  --rule:         rgba(20, 17, 14, 0.10);
  --rule-strong:  rgba(20, 17, 14, 0.22);

  /* The brand magenta — sampled from the MBV logo mark. */
  --magenta:      #B847E0;
  --magenta-2:   #9B33C3;
  --magenta-soft: rgba(184, 71, 224, 0.10);
  --cyan:         #36E0DC;  /* logo chromatic — used very rarely if at all */

  /* ── Typography ──────────────────────────────────────────── */
  --display:    "Archivo Black", "Helvetica Neue", system-ui, sans-serif;
  --display-cn: "Anton", "Archivo Black", system-ui, sans-serif;
  --sans:       "Manrope", "Inter Tight", system-ui, -apple-system, sans-serif;
  --sans-tight: "Inter Tight", "Manrope", system-ui, sans-serif;
  --script:     "Caveat", "Brush Script MT", cursive;

  /* ── Layout ──────────────────────────────────────────────── */
  --max:    1480px;
  --pad-x:  clamp(28px, 5vw, 88px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--ink); color: var(--paper); }

/* ── Common containers ─────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.wrap-wide {
  max-width: none;
  margin: 0;
  padding: 0 var(--pad-x);
}

/* ── MBV Brand Mark — recreated in HTML/SVG ────────────────── */
.mbv-mark {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.16em;
  line-height: 0.86;
  font-family: var(--display);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  user-select: none;
}
.mbv-mark .stack {
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}
.mbv-mark .stack > span {
  display: block;
  text-transform: none;
}
.mbv-mark .badge {
  width: 0.84em;
  height: 0.84em;
  background: var(--magenta);
  position: relative;
  flex-shrink: 0;
  margin-top: 0.04em;
  margin-left: 0.04em;
}
.mbv-mark .badge::after {
  content: "HB";
  position: absolute;
  bottom: 0.04em;
  right: 0.08em;
  font-family: var(--script);
  font-weight: 500;
  font-size: 0.36em;
  color: var(--ink);
  letter-spacing: 0;
  font-style: italic;
  line-height: 1;
  transform: rotate(-4deg);
}

/* Compact inline lockup: "MODERN BUSINESS VENTURES" on one line, smaller */
.mbv-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.mbv-lockup .sq {
  width: 14px;
  height: 14px;
  background: var(--magenta);
  flex-shrink: 0;
}

/* ── Common text utilities ─────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.eyebrow-mute { color: var(--muted); }
.rule-top    { border-top:    1px solid var(--rule-strong); }
.rule-bottom { border-bottom: 1px solid var(--rule-strong); }
.hairline    { background: var(--rule-strong); height: 1px; border: 0; margin: 0; }

/* ── Section labelling (roman numeral + label, like a report) ── */
.section-label {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.section-label .roman {
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--magenta);
}

/* ── Magenta square motif (decorative, scaled to context) ──── */
.sq-mark {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: var(--magenta);
  vertical-align: middle;
}
