/* ============================================================
   mv.css : My Travel Innovations, single stylesheet
   Palette "Basalt and Iris", mobile first, no frameworks.
   ============================================================ */

/* ------------------------------------------------------------
   Reset: plain box sizing plus margin zeroing.
   Kept deliberately small; each rule below opts back in.
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, figcaption, blockquote,
dl, dd, dt,
fieldset, legend {
  margin: 0;
  padding: 0;
}
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* ------------------------------------------------------------
   Tokens
   ------------------------------------------------------------ */
:root {
  --birch: #f5f3ec;
  --birch-deep: #ebe8dd;
  --panel: #fbfaf5;
  --ink: #23252c;
  --ink-soft: #454a56;
  --quiet: #6d7280;
  --iris: #4f56b3;
  --iris-deep: #3a4090;
  --iris-wash: #e6e7f6;
  --sage: #7e9276;
  --sage-deep: #5f7259;
  --rule: #cfcabb;
  --rule-dark: #a9a493;
  --night: #191b26;
  --ok: #2e7d4f;
  --alert: #ae3d2e;

  --font-head: "Besley", Superclarendon, "Book Antiqua", Rockwell, Georgia, serif;
  --font-body: Optima, Candara, "Segoe UI", Calibri, "Noto Sans", sans-serif;
  --font-mono: ui-monospace, "Cascadia Mono", Menlo, Consolas, monospace;

  --bar-h: 56px;
  --measure: 700px;
  --wrap: 1160px;
}

/* ------------------------------------------------------------
   Self hosted headline font
   ------------------------------------------------------------ */
@font-face {
  font-family: "Besley";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/static/fonts/besley-600.woff2") format("woff2");
}
@font-face {
  font-family: "Besley";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/static/fonts/besley-800.woff2") format("woff2");
}

/* ------------------------------------------------------------
   Base
   ------------------------------------------------------------ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--bar-h) + 12px);
}
body {
  background: var(--birch);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.67;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.18;
  color: var(--ink);
}
h1 { font-size: 1.9rem; }
h2 { font-size: 1.42rem; }
h3 { font-size: 1.12rem; font-weight: 600; }
@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.62rem; }
  h3 { font-size: 1.2rem; }
}
p, ul, ol { color: var(--ink-soft); }
a {
  color: var(--iris);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--iris-deep); }
strong { color: var(--ink); }
::selection {
  background: var(--iris-wash);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--iris);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Skip link */
.mv-skip {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--night);
  color: var(--panel);
  font-size: 0.85rem;
  border-radius: 4px;
  transition: top 0.15s ease;
}
.mv-skip:focus {
  top: 10px;
  color: var(--panel);
}

/* ------------------------------------------------------------
   Layout helpers
   ------------------------------------------------------------ */
.mv-wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .mv-wrap { padding-left: 32px; padding-right: 32px; }
}
.mv-main {
  display: block;
  min-height: 60vh;
}
.mv-sec { padding: 44px 0; }
@media (min-width: 1024px) {
  .mv-sec { padding: 64px 0; }
}
.mv-sec--tint { background: var(--birch-deep); }
.mv-sec--panel { background: var(--panel); }

/* H2 overline mark: short iris bar above the heading */
.mv-main h2::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--iris);
  margin-bottom: 12px;
  border-radius: 1px;
}
.mv-main h2 { margin-bottom: 16px; }
.mv-main h2.mv-h2--bare::before { content: none; }

.mv-kicker {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--iris);
  margin-bottom: 14px;
}
.mv-mono {
  font-family: var(--font-mono);
  font-size: 0.85em;
}

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.mv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 22px;
  border: 2px solid var(--iris);
  border-radius: 4px;
  background: var(--iris);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}
.mv-btn:hover {
  background: var(--iris-deep);
  border-color: var(--iris-deep);
  color: #ffffff;
}
.mv-btn--ghost {
  background: transparent;
  color: var(--iris);
}
.mv-btn--ghost:hover {
  background: var(--iris-wash);
  color: var(--iris-deep);
}
.mv-btn--sage {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
}
.mv-btn--sage:hover {
  background: var(--sage);
  border-color: var(--sage);
}
.mv-btn[disabled] {
  opacity: 0.62;
  cursor: default;
}
.mv-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* ------------------------------------------------------------
   Header bar: single row, sticky, 56px
   ------------------------------------------------------------ */
.mv-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--bar-h);
  background: rgba(245, 243, 236, 0.86);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  border-bottom: 2px solid var(--rule);
}
.mv-bar.is-docked {
  box-shadow: 0 3px 14px rgba(25, 27, 38, 0.08);
}
.mv-bar-in {
  height: var(--bar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mv-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  min-height: 44px;
}
.mv-mark svg { width: 34px; height: 34px; }
.mv-word {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.mv-nav {
  display: none;
}
.mv-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 10px;
  border-radius: 4px;
}
.mv-nav a:hover { color: var(--iris-deep); }
.mv-nav a[aria-current="page"] {
  color: var(--iris);
  font-weight: 700;
}
.mv-nav .mv-chip-btn {
  border: 2px solid var(--iris);
  border-radius: 999px;
  color: var(--iris);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  margin-left: 6px;
}
.mv-nav .mv-chip-btn:hover {
  background: var(--iris);
  color: #ffffff;
}
.mv-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--rule-dark);
  border-radius: 4px;
  background: var(--panel);
  cursor: pointer;
}
.mv-burger-lines {
  display: block;
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: background 0.18s ease;
}
.mv-burger-lines::before,
.mv-burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  top: -6px;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.18s ease, top 0.18s ease;
}
.mv-burger-lines::after { top: 6px; }
.mv-burger[aria-expanded="true"] .mv-burger-lines { background: transparent; }
.mv-burger[aria-expanded="true"] .mv-burger-lines::before { top: 0; transform: rotate(45deg); }
.mv-burger[aria-expanded="true"] .mv-burger-lines::after { top: 0; transform: rotate(-45deg); }

/* Under 820px the nav drops down from the top as a panel */
@media (max-width: 819.98px) {
  .mv-nav {
    position: absolute;
    top: var(--bar-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 20px 20px;
    background: var(--panel);
    border-bottom: 2px solid var(--rule);
    box-shadow: 0 14px 24px rgba(25, 27, 38, 0.12);
  }
  .mv-nav.is-open { display: flex; }
  .mv-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: 1rem;
    border-bottom: 1px solid var(--rule);
  }
  .mv-nav a:last-child { border-bottom: 0; }
  .mv-nav .mv-chip-btn {
    justify-content: center;
    margin: 10px 0 0;
    border-bottom: 0;
    border-radius: 999px;
  }
}
@media (min-width: 820px) {
  .mv-nav {
    display: flex;
    align-items: center;
    gap: 2px;
  }
  .mv-burger { display: none; }
}

/* ------------------------------------------------------------
   Hero (home)
   ------------------------------------------------------------ */
.mv-hero { padding: 48px 0 40px; }
.mv-hero-grid {
  display: grid;
  gap: 32px;
}
.mv-hero h1 { max-width: 15ch; }
.mv-hero-sub {
  margin-top: 16px;
  max-width: 52ch;
  font-size: 1.06rem;
}
.mv-spec {
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--panel);
  padding: 22px 24px;
  align-self: start;
}
.mv-spec-h {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage-deep);
  margin-bottom: 12px;
}
.mv-spec-rows { list-style: none; }
.mv-spec-rows li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 0.84rem;
}
.mv-spec-rows .mv-spec-label { color: var(--quiet); }
.mv-spec-rows .mv-spec-value { color: var(--ink); text-align: right; }
.mv-spec-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .mv-hero { padding: 72px 0 56px; }
  .mv-hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 1fr);
    gap: 56px;
    align-items: start;
  }
}

/* Fact strip under the hero */
.mv-facts-wrap { margin-top: 36px; }
.mv-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 6px 0;
}
.mv-facts li {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mv-facts li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .mv-facts {
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
  }
}

/* ------------------------------------------------------------
   Log rows (listings, not cards)
   ------------------------------------------------------------ */
.mv-log { list-style: none; }
.mv-log-row {
  border-bottom: 1px solid var(--rule);
}
.mv-log-row:first-child {
  border-top: 1px solid var(--rule);
}
.mv-log-link {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 18px 4px;
  text-decoration: none;
  color: inherit;
  transition: background 0.16s ease;
}
.mv-log-link:hover { background: var(--panel); }
.mv-log-date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--iris);
}
.mv-log-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
}
.mv-log-link:hover .mv-log-title { color: var(--iris-deep); }
.mv-log-teaser {
  color: var(--ink-soft);
  font-size: 0.93rem;
  max-width: 68ch;
}
.mv-chip {
  justify-self: start;
  align-self: start;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  white-space: nowrap;
}
.mv-chip--workbench { color: var(--iris-deep); background: var(--iris-wash); }
.mv-chip--waypoints { color: var(--sage-deep); background: #eef1ea; }
@media (min-width: 768px) {
  .mv-log-link {
    grid-template-columns: 110px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 24px;
    align-items: baseline;
    padding: 20px 8px;
  }
  .mv-log-date { grid-column: 1; grid-row: 1; }
  .mv-log-title { grid-column: 2; grid-row: 1; }
  .mv-log-teaser { grid-column: 2; grid-row: 2; }
  .mv-chip { grid-column: 3; grid-row: 1; }
}

/* ------------------------------------------------------------
   Home content blocks
   ------------------------------------------------------------ */
.mv-duo {
  display: grid;
  gap: 36px;
}
@media (min-width: 768px) {
  .mv-duo { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.mv-steps {
  list-style: none;
  counter-reset: mv-step;
  display: grid;
  gap: 18px;
  margin-top: 8px;
}
.mv-steps li {
  counter-increment: mv-step;
  position: relative;
  padding: 16px 18px 16px 58px;
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: 6px;
}
.mv-steps li::before {
  content: counter(mv-step, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 16px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--iris);
}
@media (min-width: 1024px) {
  .mv-steps { grid-template-columns: 1fr 1fr; }
}

/* Release Notes subscription block */
.mv-notes {
  background: var(--night);
  color: var(--birch);
  border-radius: 8px;
  padding: 32px 24px;
}
.mv-notes h2 { color: var(--panel); }
.mv-notes h2::before { background: var(--sage); }
.mv-notes p { color: #c9cbd8; max-width: 60ch; }
.mv-notes-form {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
}
.mv-notes-form label {
  font-size: 0.85rem;
  color: #c9cbd8;
}
.mv-notes-form input[type="email"] {
  background: #23263a;
  border: 1.5px solid #3a3f5c;
  border-radius: 4px;
  color: var(--panel);
  min-height: 46px;
  padding: 10px 14px;
}
.mv-notes-form input[type="email"]:focus {
  border-color: var(--iris);
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 86, 179, 0.4);
}
@media (min-width: 768px) {
  .mv-notes { padding: 40px 40px; }
  .mv-notes-form { flex-direction: row; flex-wrap: wrap; align-items: flex-end; }
  .mv-notes-form .mv-field { flex: 1 1 260px; }
}

/* FAQ teaser */
.mv-teaser-q h3 { margin-top: 22px; }
.mv-teaser-q h3:first-of-type { margin-top: 0; }
.mv-teaser-q p { margin-top: 6px; }

/* ------------------------------------------------------------
   Article
   ------------------------------------------------------------ */
.mv-article { padding: 44px 0 56px; }
.mv-art-head {
  max-width: var(--measure);
  margin: 0 auto;
}
.mv-art-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.mv-art-meta .mv-log-date { font-size: 0.85rem; }
.mv-read {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--quiet);
}
.mv-deck {
  margin-top: 16px;
  font-size: 1.12rem;
  color: var(--ink-soft);
}
.mv-plate {
  margin: 30px auto;
  max-width: 940px;
}
.mv-plate img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--rule-dark);
  border-radius: 6px;
  background: var(--birch-deep);
}
.mv-plate figcaption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--quiet);
}
.mv-art-body {
  max-width: var(--measure);
  margin: 0 auto;
}
.mv-art-body p,
.mv-art-body ul,
.mv-art-body ol { margin: 0 0 20px; }
.mv-art-body ul,
.mv-art-body ol { padding-left: 24px; }
.mv-art-body li { margin-bottom: 8px; }
.mv-art-body h2 { margin: 40px 0 14px; }
.mv-art-body h3 { margin: 28px 0 10px; }

/* The setup: spec aside before the first section */
.mv-bench {
  border: 2px solid var(--sage);
  border-radius: 6px;
  background: var(--panel);
  padding: 20px 22px;
  margin: 28px 0;
}
.mv-bench-h {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage-deep);
  margin-bottom: 10px;
}
.mv-bench dl {
  display: grid;
  gap: 6px;
}
.mv-bench div {
  display: flex;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 6px;
}
.mv-bench div:last-child { border-bottom: 0; padding-bottom: 0; }
.mv-bench dt { color: var(--quiet); min-width: 92px; }
.mv-bench dd { color: var(--ink); }

/* What was checked */
.mv-checked {
  max-width: var(--measure);
  margin: 40px auto 0;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.mv-checked ul {
  list-style: none;
  margin-top: 8px;
}
.mv-checked li {
  font-size: 0.9rem;
  color: var(--quiet);
  padding: 6px 0 6px 20px;
  position: relative;
}
.mv-checked li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 15px;
  width: 8px;
  height: 2px;
  background: var(--rule-dark);
}

/* Author block */
.mv-author {
  max-width: var(--measure);
  margin: 36px auto 0;
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--birch-deep);
  border-radius: 6px;
  padding: 18px 20px;
}
.mv-avatar {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--iris);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  border: 2px solid var(--iris-deep);
}
.mv-author-name {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
}
.mv-author-role {
  font-size: 0.88rem;
  color: var(--quiet);
}

/* Next on the bench */
.mv-next {
  max-width: var(--measure);
  margin: 44px auto 0;
}

/* ------------------------------------------------------------
   Page shells (about, policies, contact, faq, hubs)
   ------------------------------------------------------------ */
.mv-page-head { padding: 48px 0 8px; }
.mv-page-head h1 { max-width: 22ch; }
.mv-page-head .mv-lead {
  margin-top: 16px;
  font-size: 1.08rem;
  max-width: 62ch;
}
.mv-updated {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--quiet);
}
.mv-prose { max-width: var(--measure); }
.mv-prose p,
.mv-prose ul,
.mv-prose ol { margin: 0 0 18px; }
.mv-prose ul,
.mv-prose ol { padding-left: 24px; }
.mv-prose li { margin-bottom: 7px; }
.mv-prose h2 { margin: 38px 0 14px; }
.mv-prose h3 { margin: 26px 0 8px; }
.mv-prose h2:first-child { margin-top: 0; }

/* Records and desk tables */
.mv-records {
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--panel);
  padding: 8px 20px;
  max-width: var(--measure);
}
.mv-records div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}
.mv-records div:last-child { border-bottom: 0; }
.mv-records dt {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--quiet);
}
.mv-records dd { color: var(--ink); }
@media (min-width: 768px) {
  .mv-records div {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 18px;
    align-items: baseline;
  }
}

/* ------------------------------------------------------------
   Forms
   ------------------------------------------------------------ */
.mv-form {
  max-width: 560px;
  display: grid;
  gap: 18px;
}
.mv-field { display: grid; gap: 6px; }
.mv-field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.mv-field input,
.mv-field select,
.mv-field textarea {
  width: 100%;
  min-height: 46px;
  background: var(--panel);
  border: 1.5px solid var(--rule);
  border-radius: 4px;
  padding: 10px 14px;
  color: var(--ink);
}
.mv-field textarea {
  min-height: 150px;
  resize: vertical;
}
.mv-field input:focus,
.mv-field select:focus,
.mv-field textarea:focus {
  border-color: var(--iris);
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 86, 179, 0.25);
}
.mv-consent {
  font-size: 0.85rem;
  color: var(--quiet);
}
.mv-note {
  min-height: 1em;
  font-size: 0.92rem;
}
.mv-note.is-bad { color: var(--alert); font-weight: 700; }
.mv-note.is-good { color: var(--ok); font-weight: 700; }

/* Honeypot: visually removed, still in the document */
.mv-fax {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ------------------------------------------------------------
   Cookie notice: floating card, top right
   ------------------------------------------------------------ */
.mv-cookie {
  position: fixed;
  top: 68px;
  right: 16px;
  z-index: 150;
  width: min(340px, calc(100vw - 32px));
  background: var(--panel);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 20px 20px 18px;
  box-shadow: 0 18px 40px rgba(25, 27, 38, 0.18);
}
.mv-cookie[hidden] { display: none; }
.mv-cookie-h {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.mv-cookie p {
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.mv-cookie-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.mv-cookie-row .mv-btn {
  padding: 8px 14px;
  min-height: 44px;
  font-size: 12px;
}

/* ------------------------------------------------------------
   Back to top
   ------------------------------------------------------------ */
.mv-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--iris-deep);
  background: var(--iris);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(25, 27, 38, 0.22);
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mv-top[hidden] { display: none; }
.mv-top svg { width: 20px; height: 20px; }
.mv-top:hover { background: var(--iris-deep); }

/* ------------------------------------------------------------
   Footer: light, double iris top line
   ------------------------------------------------------------ */
.mv-foot {
  margin-top: 56px;
  background: var(--birch-deep);
  border-top: 4px double var(--iris);
}
.mv-foot-grid {
  display: grid;
  gap: 36px;
  padding: 44px 0 28px;
}
.mv-foot-co .mv-mark { margin-bottom: 12px; }
.mv-foot-co .mv-mark svg { width: 28px; height: 28px; }
.mv-foot-co .mv-word { font-size: 0.95rem; }
.mv-foot-co p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.mv-foot-co a { color: var(--iris-deep); }
.mv-foot h2 {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--quiet);
  margin-bottom: 12px;
}
.mv-foot ul { list-style: none; }
.mv-foot ul a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
}
.mv-foot ul a:hover { color: var(--iris-deep); text-decoration: underline; }
.mv-legal {
  border-top: 1px solid var(--rule-dark);
  padding: 20px 0 32px;
}
.mv-legal p {
  font-size: 0.82rem;
  color: var(--quiet);
  max-width: 84ch;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .mv-foot-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

/* ------------------------------------------------------------
   Scroll reveal
   ------------------------------------------------------------ */
.mv-js .mv-rise {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.mv-js .mv-rise.is-lit {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------
   Reduced motion
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .mv-js .mv-rise {
    opacity: 1;
    transform: none;
  }
}

/* ------------------------------------------------------------
   Print
   ------------------------------------------------------------ */
@media print {
  .mv-bar,
  .mv-burger,
  .mv-cookie,
  .mv-top,
  .mv-skip,
  .mv-notes,
  .mv-foot ul,
  form { display: none !important; }
  body {
    background: #ffffff;
    color: #000000;
    font-size: 12pt;
  }
  .mv-main a { color: #000000; text-decoration: none; }
  .mv-js .mv-rise { opacity: 1; transform: none; }
}
