/*
 * translatemenow.com — design system
 * Charcoal #1E2432 + Amber #E8853D + Cream #FBF8F3 + Sand #E8D5B7
 * Libre Baskerville (serif) + Work Sans (body)
 * Nav: STICKY TRANSPARENT-TO-SOLID (unique scroll transition)
 * Hero: DIAGONAL SPLIT — dark charcoal left + photo right with angled cut
 */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Work+Sans:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ───────────────────────────────────────── */
:root {
  --mn-charcoal:  #1E2432;
  --mn-charcoal-d:#141720;
  --mn-amber:     #E8853D;
  --mn-amber-d:   #C96C24;
  --mn-amber-l:   rgba(232,133,61,.12);
  --mn-cream:     #FBF8F3;
  --mn-sand:      #E8D5B7;
  --mn-sand-l:    rgba(232,213,183,.25);
  --mn-text:      #2C3344;
  --mn-muted:     #7C8491;
  --mn-border:    rgba(30,36,50,.09);
  --mn-border-lt: rgba(255,255,255,.12);

  --mn-fh: 'Libre Baskerville', Georgia, serif;
  --mn-fb: 'Work Sans', 'Helvetica Neue', Arial, sans-serif;

  --mn-r4:  4px;  --mn-r6:  6px;  --mn-r8:  8px;
  --mn-r12: 12px; --mn-r16: 16px; --mn-r24: 24px;

  --mn-sh1: 0 1px 4px rgba(30,36,50,.06), 0 4px 16px rgba(30,36,50,.04);
  --mn-sh2: 0 4px 20px rgba(30,36,50,.1), 0 8px 32px rgba(30,36,50,.06);
  --mn-sh3: 0 8px 48px rgba(20,23,32,.25);
}

/* ── RESET ────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--mn-fb);
  font-size: .9375rem; line-height: 1.72;
  color: var(--mn-text); background: var(--mn-cream);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: var(--mn-fb); }
ul { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--mn-fh); font-weight: 700; line-height: 1.18; color: var(--mn-charcoal); }
h1 { font-size: clamp(2.25rem, 4.5vw, 4rem); letter-spacing: -.015em; }
h2 { font-size: clamp(1.875rem, 3vw, 2.75rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); }
h4 { font-size: 1.0625rem; font-weight: 700; }
p  { line-height: 1.8; }

/* ── NAV: STICKY TRANSPARENT-TO-SOLID ────────────── */
.mn-mast {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background .35s ease, box-shadow .35s ease;
}
.mn-mast-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex; align-items: center; gap: 1.5rem;
  height: 74px;
}
.mn-mast-brand {
  font-family: var(--mn-fh); font-size: clamp(1.1875rem, 2vw, 1.4375rem);
  font-weight: 700; color: #fff; white-space: nowrap; flex-shrink: 0;
  transition: color .3s;
}
.mn-mast-brand span { color: var(--mn-amber); }
.mn-mast.mn-solid .mn-mast-brand { color: var(--mn-charcoal); }
.mn-mast-nav { flex: 1; display: flex; align-items: center; justify-content: center; gap: .125rem; }
.mn-navlink {
  font-family: var(--mn-fb); font-size: 1.0625rem; font-weight: 600;
  color: rgba(255,255,255,.8); padding: .5rem .875rem; border-radius: var(--mn-r6);
  transition: color .2s, background .2s;
}
.mn-navlink:hover { color: #fff; background: rgba(255,255,255,.1); }
.mn-navlink.mn-active { color: #fff; }
.mn-mast.mn-solid .mn-navlink { color: var(--mn-text); }
.mn-mast.mn-solid .mn-navlink:hover { background: var(--mn-amber-l); color: var(--mn-charcoal); }
.mn-mast.mn-solid .mn-navlink.mn-active { color: var(--mn-amber-d); }
.mn-mast.mn-solid {
  background: rgba(251,248,243,.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(30,36,50,.07);
}
.mn-mast-right { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.mn-mast-cta {
  font-family: var(--mn-fb); font-size: .9375rem; font-weight: 700;
  background: var(--mn-amber); color: #fff;
  padding: .6875rem 1.5rem; border-radius: var(--mn-r6);
  white-space: nowrap; transition: background .2s;
}
.mn-mast-cta:hover { background: var(--mn-amber-d); }
.mn-burger { display: none; background: none; border: none; color: #fff; padding: .5rem; transition: color .3s; }
.mn-mast.mn-solid .mn-burger { color: var(--mn-charcoal); }

/* Mobile nav drawer */
.mn-drawer { display: none; position: fixed; inset: 0; background: var(--mn-charcoal); z-index: 9000; flex-direction: column; padding: 2rem; overflow-y: auto; }
.mn-drawer.mn-dr-open { display: flex; }
.mn-dr-close { background: none; border: none; color: rgba(255,255,255,.5); padding: .5rem; margin-bottom: 2rem; }
.mn-dr-link { font-family: var(--mn-fh); font-size: 1.625rem; font-weight: 700; color: rgba(255,255,255,.85); padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.07); display: block; }
.mn-dr-link:hover { color: var(--mn-amber); }
.mn-dr-cta { margin-top: 2rem; background: var(--mn-amber); color: #fff; padding: 1rem 2rem; border-radius: var(--mn-r6); font-family: var(--mn-fb); font-size: 1rem; font-weight: 700; text-align: center; display: block; }

/* ── HERO: DIAGONAL SPLIT ─────────────────────────── */
#mn-overture {
  position: relative; min-height: 100vh;
  background: var(--mn-charcoal-d);
  display: flex; align-items: center;
  overflow: hidden; padding-top: 74px;
}
.mn-overture-photo {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 52%; overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.mn-overture-photo img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.mn-overture-amber-strip {
  position: absolute; right: 49%; top: 0; bottom: 0; width: 6px;
  background: var(--mn-amber); z-index: 2;
}
.mn-overture-copy {
  position: relative; z-index: 3;
  max-width: 1100px; margin: 0 auto; width: 100%;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
}
.mn-ov-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mn-fb); font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--mn-amber); margin-bottom: 1.5rem;
}
.mn-ov-label::before { content: ''; width: 28px; height: 2px; background: var(--mn-amber); }
.mn-ov-h1 {
  font-size: clamp(2.25rem, 4.5vw, 4rem); color: #fff;
  max-width: 13ch; margin-bottom: 1.25rem; line-height: 1.1;
}
.mn-ov-h1 em { font-style: normal; color: var(--mn-amber); }
.mn-ov-sub { color: rgba(255,255,255,.55); max-width: 44ch; font-size: clamp(1rem, 1.8vw, 1.125rem); line-height: 1.75; margin-bottom: 2rem; }
.mn-ov-acts { display: flex; gap: .875rem; flex-wrap: wrap; }
.mn-ov-stats { margin-top: 3.5rem; display: flex; gap: 2.5rem; flex-wrap: wrap; }
.mn-ov-stat { }
.mn-ov-sn { font-family: var(--mn-fh); font-size: 1.875rem; font-weight: 700; color: #fff; line-height: 1; }
.mn-ov-sl { font-size: .8125rem; color: rgba(255,255,255,.3); font-family: var(--mn-fb); text-transform: uppercase; letter-spacing: .07em; margin-top: .25rem; }

/* ── CONTAINER ────────────────────────────────────── */
.mn-hull { max-width: 1100px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

/* ── REVEAL ───────────────────────────────────────── */
.mn-emerge { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.mn-emerge.mn-vis { opacity: 1; transform: none; }

/* ── LABELS ───────────────────────────────────────── */
.mn-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mn-fb); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--mn-amber-d);
  margin-bottom: .875rem;
}
.mn-eyebrow::before { content: ''; width: 20px; height: 1.5px; background: var(--mn-amber); }

/* ── BUTTONS ──────────────────────────────────────── */
.mn-btn-amber {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--mn-amber); color: #fff;
  font-family: var(--mn-fb); font-size: .9375rem; font-weight: 700;
  padding: .8125rem 1.875rem; border-radius: var(--mn-r6);
  border: none; transition: background .2s; white-space: nowrap;
}
.mn-btn-amber:hover { background: var(--mn-amber-d); }

.mn-btn-outline-lt {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: rgba(255,255,255,.75);
  font-family: var(--mn-fb); font-size: .9375rem; font-weight: 600;
  padding: .8125rem 1.875rem; border-radius: var(--mn-r6);
  border: 1.5px solid rgba(255,255,255,.2); transition: background .2s, color .2s;
  white-space: nowrap;
}
.mn-btn-outline-lt:hover { background: rgba(255,255,255,.08); color: #fff; }

.mn-btn-charcoal {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--mn-charcoal); color: #fff;
  font-family: var(--mn-fb); font-size: .9375rem; font-weight: 700;
  padding: .8125rem 1.875rem; border-radius: var(--mn-r6);
  border: none; transition: background .2s; white-space: nowrap;
}
.mn-btn-charcoal:hover { background: var(--mn-charcoal-d); }

.mn-btn-outline-dk {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--mn-charcoal);
  font-family: var(--mn-fb); font-size: .9375rem; font-weight: 600;
  padding: .8125rem 1.875rem; border-radius: var(--mn-r6);
  border: 1.5px solid var(--mn-border); transition: background .2s; white-space: nowrap;
}
.mn-btn-outline-dk:hover { background: var(--mn-amber-l); border-color: var(--mn-amber); color: var(--mn-amber-d); }

.mn-text-link {
  display: inline-flex; align-items: center; gap: .375rem;
  font-family: var(--mn-fb); font-size: .9375rem; font-weight: 700;
  color: var(--mn-amber-d); border-bottom: 1.5px solid transparent;
  transition: border-color .2s;
}
.mn-text-link:hover { border-color: var(--mn-amber); }

/* ── BANDS ────────────────────────────────────────── */
.mn-band { padding: clamp(4rem, 8vw, 7rem) 0; }
.mn-band-sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.mn-band-cream   { background: var(--mn-cream); }
.mn-band-sand    { background: var(--mn-sand-l); }
.mn-band-dark    { background: var(--mn-charcoal); }
.mn-band-darkest { background: var(--mn-charcoal-d); }
.mn-band-amber   { background: var(--mn-amber); }

.mn-bh { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.mn-bh h2 { max-width: 22ch; }
.mn-bh p { color: var(--mn-muted); max-width: 54ch; margin-top: .875rem; }
.mn-bh-row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }

/* ── SERVICES ROSTER ──────────────────────────────── */
.mn-roster { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mn-tile {
  background: var(--mn-charcoal); border-radius: var(--mn-r12);
  padding: 2rem; border: 1px solid rgba(255,255,255,.05);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.mn-tile:hover { transform: translateY(-3px); box-shadow: var(--mn-sh3); }
.mn-tile-ico {
  width: 48px; height: 48px; border-radius: var(--mn-r8);
  background: var(--mn-amber); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; flex-shrink: 0;
  transition: background .2s;
}
.mn-tile:hover .mn-tile-ico { background: var(--mn-amber-d); }
.mn-tile-name { font-family: var(--mn-fh); font-size: 1.0625rem; font-weight: 700; color: #fff; margin-bottom: .625rem; }
.mn-tile-desc { font-size: .875rem; color: rgba(255,255,255,.4); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.mn-tile-foot { display: flex; justify-content: space-between; align-items: center; }
.mn-tile-price { font-family: var(--mn-fb); font-size: .9375rem; font-weight: 700; color: var(--mn-amber); }
.mn-tile-arr { color: rgba(255,255,255,.25); transition: color .2s, transform .2s; }
.mn-tile:hover .mn-tile-arr { color: var(--mn-amber); transform: translate(2px, -2px); }

/* ── WHY US (numbered editorial) ─────────────────── */
.mn-bridge { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.mn-bridge-left { }
.mn-bridge-right { }
.mn-ledger-item {
  display: flex; gap: 1.5rem; padding: 1.75rem 0;
  border-bottom: 1px solid var(--mn-border);
}
.mn-ledger-item:first-child { padding-top: 0; }
.mn-ledger-item:last-child { border-bottom: none; }
.mn-ledger-num {
  font-family: var(--mn-fh); font-size: 2.25rem; font-weight: 700; italic;
  color: var(--mn-amber); line-height: 1; flex-shrink: 0;
  width: 56px; text-align: right;
}
.mn-ledger-num em { font-style: italic; }
.mn-ledger-body h4 { font-family: var(--mn-fh); margin-bottom: .375rem; font-size: 1.0625rem; }
.mn-ledger-body p { font-size: .9375rem; color: var(--mn-muted); line-height: 1.78; margin: 0; }

/* ── STATS DARK BAND ──────────────────────────────── */
.mn-figures { display: grid; grid-template-columns: repeat(4, 1fr); }
.mn-fig-cell { padding: 2.5rem 2rem; border-right: 1px solid rgba(255,255,255,.06); }
.mn-fig-cell:last-child { border-right: none; }
.mn-fig-n { font-family: var(--mn-fh); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; color: #fff; line-height: 1; }
.mn-fig-l { font-size: .8125rem; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .07em; margin-top: .375rem; font-family: var(--mn-fb); }

/* ── CASE STUDIES (alternating full-width) ────────── */
.mn-narrative { }
.mn-story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--mn-r16); overflow: hidden;
  margin-bottom: 1.5rem; border: 1.5px solid var(--mn-border);
}
.mn-story:nth-child(even) .mn-story-img { order: -1; }
.mn-story-img { aspect-ratio: 4/3; background: var(--mn-sand); overflow: hidden; }
.mn-story-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.mn-story:hover .mn-story-img img { transform: scale(1.03); }
.mn-story-copy { padding: clamp(2rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; background: #fff; }
.mn-story-sector { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--mn-amber-d); font-family: var(--mn-fb); margin-bottom: .5rem; }
.mn-story-h { font-family: var(--mn-fh); font-size: clamp(1.25rem, 2vw, 1.625rem); margin-bottom: 1rem; }
.mn-story-lbl { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--mn-muted); font-family: var(--mn-fb); margin-bottom: .375rem; margin-top: .875rem; }
.mn-story-p { font-size: .9375rem; color: var(--mn-muted); line-height: 1.78; margin: 0; }
.mn-story-stat { margin-top: 1.5rem; padding: 1.25rem 1.5rem; background: var(--mn-charcoal); border-radius: var(--mn-r8); }
.mn-story-sn { font-family: var(--mn-fh); font-size: 2.25rem; font-weight: 700; color: var(--mn-amber); line-height: 1; }
.mn-story-sl { font-size: .8125rem; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .06em; margin-top: .25rem; }

/* ── TESTIMONIALS (2x2 grid) ──────────────────────── */
.mn-voices { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.mn-vcard {
  background: #fff; border: 1.5px solid var(--mn-border); border-radius: var(--mn-r12);
  padding: 2rem; position: relative; overflow: hidden;
}
.mn-vcard::before {
  content: '\201C'; position: absolute; top: -1rem; left: 1.25rem;
  font-family: var(--mn-fh); font-size: 7rem; color: var(--mn-amber-l);
  line-height: 1; pointer-events: none; user-select: none;
}
.mn-vcard-tag {
  display: inline-flex; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--mn-amber-d); background: var(--mn-amber-l);
  padding: .3rem .75rem; border-radius: 100px;
  font-family: var(--mn-fb); margin-bottom: 1rem;
}
.mn-vcard-stars { display: flex; gap: .2rem; color: var(--mn-amber); margin-bottom: .875rem; }
.mn-vcard-q { font-size: .9375rem; color: var(--mn-text); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.mn-vcard-name { font-family: var(--mn-fb); font-size: .9375rem; font-weight: 700; color: var(--mn-charcoal); }
.mn-vcard-role { font-size: .8125rem; color: var(--mn-muted); }

/* ── PROCESS (horizontal numbered) ───────────────── */
.mn-pathway { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.mn-pathway::before {
  content: ''; position: absolute;
  top: 24px; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(to right, var(--mn-amber) 0%, rgba(232,133,61,.1) 100%);
  z-index: 0;
}
.mn-step { position: relative; z-index: 1; }
.mn-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--mn-amber); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mn-fh); font-size: 1.0625rem; font-weight: 700;
  margin-bottom: 1.25rem; border: 3px solid var(--mn-cream);
}
.mn-step-h { font-family: var(--mn-fh); font-size: 1.0625rem; font-weight: 700; margin-bottom: .5rem; }
.mn-step-b { font-size: .875rem; color: var(--mn-muted); line-height: 1.75; }

/* ── PRICING (mn-rungs) ───────────────────────────── */
.mn-rungs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.mn-rung {
  border: 1.5px solid var(--mn-border); border-radius: var(--mn-r16);
  padding: 2.25rem; background: #fff; position: relative;
  transition: box-shadow .25s;
}
.mn-rung:hover { box-shadow: var(--mn-sh1); }
.mn-rung.mn-rung-feature { background: var(--mn-charcoal); border-color: var(--mn-charcoal); }
.mn-rung-crown {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--mn-amber); color: #fff; font-family: var(--mn-fb);
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: .3rem 1rem; border-radius: 100px; white-space: nowrap;
}
.mn-rung-vol { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--mn-amber-d); font-family: var(--mn-fb); margin-bottom: .375rem; }
.mn-rung.mn-rung-feature .mn-rung-vol { color: rgba(255,255,255,.35); }
.mn-rung-name { font-family: var(--mn-fh); font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--mn-charcoal); }
.mn-rung.mn-rung-feature .mn-rung-name { color: #fff; }
.mn-rung-price { font-family: var(--mn-fh); font-size: 2.75rem; font-weight: 700; color: var(--mn-charcoal); line-height: 1; margin-bottom: .375rem; }
.mn-rung.mn-rung-feature .mn-rung-price { color: var(--mn-amber); }
.mn-rung-tag { font-size: .8125rem; color: var(--mn-muted); margin-bottom: 1.75rem; }
.mn-rung.mn-rung-feature .mn-rung-tag { color: rgba(255,255,255,.3); }
.mn-rung-feats { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 2rem; }
.mn-rung-feat { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: var(--mn-text); }
.mn-rung.mn-rung-feature .mn-rung-feat { color: rgba(255,255,255,.65); }
.mn-feat-ico { color: var(--mn-amber); flex-shrink: 0; margin-top: 1px; }
.mn-rung.mn-rung-feature .mn-feat-ico { color: rgba(255,255,255,.3); }
.mn-rung-cta { width: 100%; justify-content: center; }

/* ── FAQ (mn-queries) ─────────────────────────────── */
.mn-queries-wrap { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.mn-queries-lh { position: sticky; top: 6rem; }
.mn-queries-lh h2 { margin-bottom: 1rem; }
.mn-queries-lh p { color: var(--mn-muted); font-size: .9375rem; line-height: 1.8; margin-bottom: 1.5rem; }
.mn-query { border-bottom: 1.5px solid var(--mn-border); }
.mn-query-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 0; background: none; border: none; text-align: left; cursor: pointer;
}
.mn-qt { font-family: var(--mn-fh); font-size: 1rem; font-weight: 700; color: var(--mn-charcoal); flex: 1; }
.mn-qi { color: var(--mn-muted); flex-shrink: 0; transition: transform .25s; }
.mn-query.mn-q-open .mn-qi { transform: rotate(180deg); }
.mn-query-ans { display: none; padding-bottom: 1.25rem; }
.mn-query.mn-q-open .mn-query-ans { display: block; }
.mn-query-ans p { font-size: .9375rem; color: var(--mn-muted); line-height: 1.8; }

/* ── PACKAGE BUILDER ──────────────────────────────── */
.mn-bld-grid { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.mn-bld-step { background: #fff; border: 1.5px solid var(--mn-border); border-radius: var(--mn-r12); padding: 2rem; margin-bottom: 1.25rem; }
.mn-bld-hd { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--mn-muted); margin-bottom: 1rem; padding-bottom: .625rem; border-bottom: 1.5px solid var(--mn-border); font-family: var(--mn-fb); }
.mn-pkg-row {
  border: 1.5px solid var(--mn-border); border-radius: var(--mn-r8);
  padding: 1rem 1.25rem; cursor: pointer; margin-bottom: .625rem;
  display: flex; align-items: center; gap: 1rem; transition: all .2s;
}
.mn-pkg-row:hover { border-color: var(--mn-amber); background: var(--mn-amber-l); }
.mn-pkg-row.mn-pkg-sel { border-color: var(--mn-amber-d); background: var(--mn-amber-l); }
.mn-pkg-radio { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--mn-border); flex-shrink: 0; transition: all .2s; }
.mn-pkg-row.mn-pkg-sel .mn-pkg-radio { border-color: var(--mn-amber-d); background: var(--mn-amber-d); box-shadow: inset 0 0 0 4px #fff; }
.mn-pkg-nm { font-family: var(--mn-fh); font-weight: 700; font-size: .9375rem; color: var(--mn-charcoal); }
.mn-pkg-desc { font-size: .8125rem; color: var(--mn-muted); }
.mn-pkg-pr { margin-left: auto; font-family: var(--mn-fh); font-size: 1.125rem; font-weight: 700; color: var(--mn-charcoal); }

.mn-add-row {
  display: flex; align-items: center; gap: .875rem; padding: .875rem 1rem;
  border: 1.5px solid var(--mn-border); border-radius: var(--mn-r8);
  cursor: pointer; margin-bottom: .5rem; transition: all .2s;
}
.mn-add-row:hover { border-color: var(--mn-amber); background: var(--mn-amber-l); }
.mn-add-row.mn-add-sel { border-color: var(--mn-amber-d); background: var(--mn-amber-l); }
.mn-add-chk {
  width: 20px; height: 20px; border: 1.5px solid var(--mn-border); border-radius: 4px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; background: transparent; transition: all .18s;
}
.mn-add-row.mn-add-sel .mn-add-chk { background: var(--mn-amber-d); border-color: var(--mn-amber-d); }
.mn-add-nm  { flex: 1; font-size: .9375rem; font-weight: 500; color: var(--mn-charcoal); }
.mn-add-pr  { font-family: var(--mn-fh); font-size: 1rem; font-weight: 700; color: var(--mn-muted); }

.mn-hrs-row { display: flex; align-items: center; gap: 1rem; }
.mn-hrs-sl  { flex: 1; accent-color: var(--mn-amber); }
.mn-hrs-disp { font-family: var(--mn-fh); font-size: 1.25rem; font-weight: 700; color: var(--mn-charcoal); min-width: 5rem; }

/* Receipt panel */
.mn-receipt {
  background: var(--mn-charcoal-d); border-radius: var(--mn-r16); padding: 2rem;
  position: sticky; top: 5rem;
}
.mn-rc-hd { font-family: var(--mn-fh); font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }
.mn-rc-rows { min-height: 60px; margin-bottom: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.mn-rc-row { display: flex; justify-content: space-between; gap: 1rem; }
.mn-rc-rk { font-size: .875rem; color: rgba(255,255,255,.4); }
.mn-rc-rv { font-size: .875rem; font-weight: 700; color: #fff; white-space: nowrap; }
.mn-rc-nil { font-size: .875rem; font-style: italic; color: rgba(255,255,255,.2); }
.mn-rc-div { border-top: 1px solid rgba(255,255,255,.1); margin: 1rem 0; }
.mn-rc-total { display: flex; justify-content: space-between; align-items: baseline; }
.mn-rc-tl { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.25); font-family: var(--mn-fb); }
.mn-rc-tv { font-family: var(--mn-fh); font-size: 2.25rem; font-weight: 700; color: var(--mn-amber); }
.mn-rc-cta { margin-top: 1.25rem; width: 100%; justify-content: center; }
.mn-rc-note { font-size: .75rem; color: rgba(255,255,255,.2); text-align: center; margin-top: .75rem; line-height: 1.55; }

/* ── CHECKOUT ─────────────────────────────────────── */
.mn-chk-grid { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.mn-chk-form { background: #fff; border: 1.5px solid var(--mn-border); border-radius: var(--mn-r16); padding: 2.5rem; }
.mn-order-bar { background: var(--mn-charcoal-d); border-radius: var(--mn-r16); padding: 2rem; position: sticky; top: 5rem; }
.mn-ob-hd { font-family: var(--mn-fh); font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }
.mn-ob-row { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .5rem; }
.mn-ob-k { font-size: .875rem; color: rgba(255,255,255,.4); }
.mn-ob-v { font-size: .875rem; font-weight: 700; color: #fff; text-align: right; }
.mn-ob-div { border-top: 1px solid rgba(255,255,255,.1); margin: 1rem 0; }
.mn-ob-total { display: flex; justify-content: space-between; align-items: baseline; }
.mn-ob-tl { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.25); }
.mn-ob-tv { font-family: var(--mn-fh); font-size: 2rem; font-weight: 700; color: var(--mn-amber); }
.mn-ob-note { font-size: .8125rem; color: rgba(255,255,255,.25); margin-top: 1rem; line-height: 1.6; }

.mn-field { margin-bottom: 1.25rem; }
.mn-field label { display: block; font-size: .875rem; font-weight: 600; color: var(--mn-charcoal); margin-bottom: .4rem; font-family: var(--mn-fb); }
.mn-field input, .mn-field select, .mn-field textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--mn-border); border-radius: var(--mn-r8);
  font-family: var(--mn-fb); font-size: .9375rem; color: var(--mn-charcoal);
  background: #fff; transition: border-color .2s; -webkit-appearance: none;
}
.mn-field input:focus, .mn-field select:focus, .mn-field textarea:focus {
  outline: none; border-color: var(--mn-amber);
  box-shadow: 0 0 0 3px var(--mn-amber-l);
}
.mn-field-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mn-tos-row { display: flex; align-items: flex-start; gap: .75rem; margin: 1.5rem 0; }
.mn-tos-row input { flex-shrink: 0; margin-top: 3px; accent-color: var(--mn-amber); }
.mn-tos-row label { font-size: .875rem; color: var(--mn-muted); line-height: 1.6; }
.mn-tos-row a { color: var(--mn-amber-d); text-decoration: underline; }

/* ── PAGE HEADERS ─────────────────────────────────── */
.mn-page-mast {
  background: linear-gradient(135deg, var(--mn-charcoal-d) 0%, var(--mn-charcoal) 100%);
  padding: clamp(6rem, 10vw, 8rem) 0 clamp(3rem, 5vw, 4rem);
  text-align: center; position: relative; overflow: hidden;
}
.mn-page-mast::before {
  content: ''; position: absolute; top: -60%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,133,61,.1) 0%, transparent 70%);
  pointer-events: none;
}
.mn-page-mast h1 { color: #fff; position: relative; z-index: 1; }
.mn-pm-eyebrow { color: rgba(255,255,255,.35); font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-family: var(--mn-fb); margin-bottom: 1rem; justify-content: center; display: flex; align-items: center; gap: .5rem; }
.mn-pm-eyebrow::before { content: ''; width: 20px; height: 1.5px; background: var(--mn-amber); }
.mn-page-mast-sub { color: rgba(255,255,255,.45); max-width: 54ch; margin: .875rem auto 0; font-size: clamp(.9375rem, 1.8vw, 1.0625rem); position: relative; z-index: 1; }

/* Service page */
.mn-svc-mast {
  background: linear-gradient(135deg, var(--mn-charcoal) 0%, #2C3550 100%);
  padding: clamp(5.5rem, 9vw, 7.5rem) 0 clamp(3rem, 5vw, 4.5rem);
  text-align: center; position: relative; overflow: hidden;
}
.mn-svc-mast::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: var(--mn-cream); clip-path: ellipse(60% 100% at 50% 100%); }
.mn-svc-mast h1 { color: #fff; position: relative; z-index: 1; }
.mn-svc-mast-sub { color: rgba(255,255,255,.45); max-width: 58ch; margin: .875rem auto 0; position: relative; z-index: 1; }
.mn-svc-pg { max-width: 820px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 3vw, 2rem); }
.mn-svc-img { border-radius: var(--mn-r12); overflow: hidden; aspect-ratio: 16/9; background: var(--mn-sand); margin-bottom: 2.5rem; }
.mn-svc-img img { width: 100%; height: 100%; object-fit: cover; }
.mn-svc-body p { color: var(--mn-muted); margin-bottom: 1.25rem; font-size: .9375rem; line-height: 1.85; }
.mn-feats-box { background: var(--mn-sand-l); border-radius: var(--mn-r12); padding: 1.75rem; margin-top: 2rem; border-left: 3px solid var(--mn-amber); }
.mn-feats-hd { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--mn-muted); margin-bottom: 1rem; font-family: var(--mn-fb); }
.mn-feats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .625rem; }
.mn-feat-item { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--mn-text); }
.mn-fi-ico { color: var(--mn-amber-d); flex-shrink: 0; margin-top: 1px; }
.mn-svc-order-box { background: var(--mn-charcoal); border-radius: var(--mn-r16); padding: 2.5rem; text-align: center; margin-top: 3rem; }
.mn-sob-from { font-size: .8125rem; color: rgba(255,255,255,.3); font-family: var(--mn-fb); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.mn-sob-price { font-family: var(--mn-fh); font-size: 2.75rem; font-weight: 700; color: #fff; }
.mn-sob-note { font-size: .875rem; color: rgba(255,255,255,.3); margin-bottom: 1.75rem; }
.mn-sob-acts { display: flex; gap: .875rem; justify-content: center; flex-wrap: wrap; }
.mn-svc-rel { margin-top: 3rem; }
.mn-svc-rel h3 { font-size: 1.25rem; margin-bottom: 1.25rem; }
.mn-svc-rel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; }
.mn-svc-rel-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: .875rem 1rem; border-radius: var(--mn-r8); background: var(--mn-sand-l);
  border: 1.5px solid transparent; font-size: .875rem; font-weight: 500; color: var(--mn-charcoal);
  transition: border-color .18s;
}
.mn-svc-rel-card:hover { border-color: var(--mn-amber); }
.mn-svc-rel-arr { color: var(--mn-muted); }

/* ── PAYMENT & CONFIRM ────────────────────────────── */
.mn-confirm-box { max-width: 520px; margin: 0 auto; text-align: center; padding: clamp(3rem, 6vw, 5rem); }
.mn-cf-ico { width: 72px; height: 72px; border-radius: 50%; background: var(--mn-amber-l); color: var(--mn-amber-d); margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; }
.mn-cf-steps { text-align: left; margin: 2rem 0; display: flex; flex-direction: column; gap: .875rem; }
.mn-cf-step { display: flex; align-items: flex-start; gap: 1rem; }
.mn-cf-num { width: 32px; height: 32px; border-radius: 50%; background: var(--mn-amber); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--mn-fh); font-size: .875rem; font-weight: 700; flex-shrink: 0; }
.mn-cf-step p { font-size: .9rem; color: var(--mn-muted); line-height: 1.65; }

/* ── LEGAL ────────────────────────────────────────── */
.mn-legal-body { max-width: 840px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 3vw, 2rem); }
.mn-legal-body h1 { text-align: center; margin-bottom: .5rem; }
.mn-legal-date { text-align: center; font-size: .875rem; color: var(--mn-muted); margin-bottom: 3rem; }
.mn-legal-body h2 { font-size: 1.25rem; margin: 2.5rem 0 .75rem; color: var(--mn-amber-d); font-family: var(--mn-fh); }
.mn-legal-body h3 { font-size: 1.0625rem; margin: 1.75rem 0 .5rem; }
.mn-legal-body p { color: var(--mn-text); margin-bottom: 1rem; line-height: 1.85; }
.mn-legal-body ul, .mn-legal-body ol { margin: .875rem 0 1rem 1.5rem; }
.mn-legal-body li { color: var(--mn-text); margin-bottom: .5rem; line-height: 1.75; }
.mn-legal-body ul li { list-style: disc; }
.mn-legal-body ol li { list-style: decimal; }
.mn-legal-body code { font-family: monospace; font-size: .875rem; background: var(--mn-sand-l); padding: .125rem .375rem; border-radius: 3px; }

/* ── COOKIE BANNER ────────────────────────────────── */
.mn-cookie {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 9000; background: var(--mn-charcoal-d); border-radius: var(--mn-r12);
  padding: 1.125rem 1.5rem; display: flex; align-items: center;
  gap: 1.5rem; flex-wrap: wrap; box-shadow: var(--mn-sh3);
  max-width: 680px; width: calc(100% - 3rem);
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
}
.mn-cookie.mn-ck-show { opacity: 1; visibility: visible; }
.mn-ck-txt { font-size: .875rem; color: rgba(255,255,255,.5); flex: 1; min-width: 180px; }
.mn-ck-txt a { color: var(--mn-amber); text-decoration: underline; }
.mn-ck-btns { display: flex; gap: .625rem; flex-shrink: 0; }
.mn-ck-ok  { background: var(--mn-amber); color: #fff; border: none; font-family: var(--mn-fb); font-size: .875rem; font-weight: 700; padding: .5rem 1.125rem; border-radius: var(--mn-r6); cursor: pointer; }
.mn-ck-no  { background: transparent; color: rgba(255,255,255,.35); border: 1.5px solid rgba(255,255,255,.12); font-family: var(--mn-fb); font-size: .875rem; font-weight: 600; padding: .5rem 1.125rem; border-radius: var(--mn-r6); cursor: pointer; }

/* ── CHAT WIDGET ──────────────────────────────────── */
.mn-chat-btn { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 8888; width: 52px; height: 52px; border-radius: 50%; background: var(--mn-charcoal); color: #fff; border: 3px solid var(--mn-amber); cursor: pointer; box-shadow: var(--mn-sh2); display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.mn-chat-btn:hover { transform: scale(1.08); }
.mn-chat-pane { position: fixed; bottom: 5.5rem; right: 1.75rem; z-index: 8888; width: 320px; background: #fff; border-radius: var(--mn-r16); box-shadow: var(--mn-sh3); border: 1.5px solid var(--mn-border); display: none; flex-direction: column; overflow: hidden; }
.mn-chat-pane.mn-chat-on { display: flex; }
.mn-chat-bar { background: var(--mn-charcoal-d); padding: 1rem 1.25rem; display: flex; align-items: center; gap: .75rem; }
.mn-chat-av { width: 36px; height: 36px; border-radius: 50%; background: var(--mn-amber); display: flex; align-items: center; justify-content: center; font-family: var(--mn-fh); font-size: .875rem; font-weight: 700; color: #fff; }
.mn-chat-nm { color: #fff; font-weight: 700; font-size: .9375rem; font-family: var(--mn-fb); }
.mn-chat-st { color: rgba(255,255,255,.4); font-size: .75rem; }
.mn-chat-msgs { padding: 1rem; flex: 1; max-height: 240px; overflow-y: auto; display: flex; flex-direction: column; gap: .625rem; }
.mn-cmsg { max-width: 82%; padding: .625rem .875rem; border-radius: var(--mn-r8); font-size: .875rem; line-height: 1.5; }
.mn-cmsg.mn-bot { background: var(--mn-sand-l); color: var(--mn-charcoal); align-self: flex-start; border-bottom-left-radius: 3px; }
.mn-cmsg.mn-usr { background: var(--mn-charcoal); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.mn-chat-input { display: flex; gap: .5rem; padding: .75rem 1rem; border-top: 1.5px solid var(--mn-border); }
.mn-chat-inp { flex: 1; border: 1.5px solid var(--mn-border); border-radius: var(--mn-r8); padding: .5rem .75rem; font-family: var(--mn-fb); font-size: .875rem; background: var(--mn-cream); }
.mn-chat-go { background: var(--mn-amber); color: #fff; border: none; border-radius: var(--mn-r8); padding: .5rem .75rem; cursor: pointer; }

/* ── CONTACT ──────────────────────────────────────── */
.mn-ct-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.mn-ct-detail { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.mn-ct-item { display: flex; align-items: flex-start; gap: 1rem; }
.mn-ct-ico { width: 44px; height: 44px; border-radius: 50%; background: var(--mn-amber-l); color: var(--mn-amber-d); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mn-ct-lbl { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--mn-muted); font-family: var(--mn-fb); }
.mn-ct-val { font-size: .9375rem; font-weight: 500; color: var(--mn-charcoal); margin-top: .125rem; }
.mn-ct-form-box { background: #fff; border: 1.5px solid var(--mn-border); border-radius: var(--mn-r16); padding: 2rem; }

/* ── FOOTER (mn-dispatch) ─────────────────────────── */
.mn-dispatch { background: var(--mn-charcoal-d); color: rgba(255,255,255,.4); padding: clamp(3.5rem, 7vw, 5.5rem) 0 0; }
.mn-dispatch-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.mn-dispatch-brand { font-family: var(--mn-fh); font-size: clamp(1.1875rem, 2vw, 1.4375rem); font-weight: 700; color: #fff; margin-bottom: .875rem; }
.mn-dispatch-brand span { color: var(--mn-amber); }
.mn-dispatch-blurb { font-size: .875rem; line-height: 1.75; max-width: 32ch; margin-bottom: 1.25rem; }
.mn-dispatch-socials { display: flex; gap: .625rem; }
.mn-dispatch-soc { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s; }
.mn-dispatch-soc:hover { border-color: var(--mn-amber); color: var(--mn-amber); }
.mn-dispatch-col-hd { font-family: var(--mn-fb); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.2); margin-bottom: 1rem; }
.mn-dispatch-col a { display: block; font-size: .875rem; margin-bottom: .5rem; color: rgba(255,255,255,.4); transition: color .18s; }
.mn-dispatch-col a:hover { color: #fff; }
.mn-dispatch-bar { border-top: 1px solid rgba(255,255,255,.07); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .8125rem; color: rgba(255,255,255,.18); }
.mn-dispatch-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.mn-dispatch-legal a { color: rgba(255,255,255,.2); transition: color .18s; }
.mn-dispatch-legal a:hover { color: rgba(255,255,255,.6); }

/* ── UTILS ────────────────────────────────────────── */
.mn-tc  { text-align: center; }
.mn-mt1 { margin-top: .875rem; }
.mn-mt2 { margin-top: 1.75rem; }
.mn-mt3 { margin-top: 3rem; }
.mn-flexc { display: flex; align-items: center; justify-content: center; gap: .875rem; flex-wrap: wrap; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .mn-roster { grid-template-columns: 1fr 1fr; }
  .mn-rungs { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .mn-voices { grid-template-columns: 1fr; }
  .mn-dispatch-grid { grid-template-columns: 1fr 1fr; }
  .mn-queries-wrap { grid-template-columns: 1fr; }
  .mn-queries-lh { position: static; }
  .mn-story { grid-template-columns: 1fr; }
  .mn-story-img { aspect-ratio: 16/9; }
}
@media (max-width: 860px) {
  .mn-mast-nav { display: none; }
  .mn-burger { display: flex; }
  .mn-overture-photo { width: 100%; clip-path: none; opacity: .25; }
  .mn-overture-amber-strip { display: none; }
  .mn-bridge { grid-template-columns: 1fr; }
  .mn-bld-grid { grid-template-columns: 1fr; }
  .mn-receipt { position: static; }
  .mn-chk-grid { grid-template-columns: 1fr; }
  .mn-order-bar { position: static; }
  .mn-ct-split { grid-template-columns: 1fr; }
  .mn-pathway { grid-template-columns: 1fr 1fr; }
  .mn-pathway::before { display: none; }
  .mn-figures { grid-template-columns: 1fr 1fr; }
  .mn-fig-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
}
@media (max-width: 640px) {
  .mn-roster { grid-template-columns: 1fr; }
  .mn-pathway { grid-template-columns: 1fr; }
  .mn-dispatch-grid { grid-template-columns: 1fr; }
  .mn-figures { grid-template-columns: 1fr 1fr; }
  .mn-field-2col { grid-template-columns: 1fr; }
  .mn-feats-grid { grid-template-columns: 1fr; }
  .mn-dispatch-bar { flex-direction: column; text-align: center; }
  .mn-svc-rel-grid { grid-template-columns: 1fr; }
  .mn-chat-pane { width: calc(100vw - 3.5rem); right: 1rem; }
}
