/* Marketing site styles — Eniram */
@import url('./colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg1); color: var(--fg1); }

/* ============ Nav ============ */
.mk-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center;
  height: var(--nav-h);
  padding: 0 48px;
  background: rgba(244,241,234,.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.mk-wordmark {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--navy);
  font-family: var(--font-sans); font-weight: 700; font-size: 16px; letter-spacing: .18em;
}
.mk-wordmark sup { font-size: 9px; letter-spacing: .12em; color: var(--steel); font-weight: 600; margin-left: 3px; }
.mk-logo-mark { height: 26px; width: auto; }
.mk-nav-links { display: flex; gap: 28px; margin-left: 56px; }
.mk-nav-link {
  font-family: var(--font-sans); font-size: 13.5px; color: var(--ink);
  text-decoration: none; font-weight: 500; padding: 4px 0;
  border-bottom: 2px solid transparent; white-space: nowrap;
  transition: color var(--dur-micro) var(--ease-out);
}
.mk-nav-link:hover { color: var(--navy); }
.mk-nav-link.is-active { color: var(--navy); border-bottom-color: var(--gold); }
.mk-nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }

/* ============ Buttons ============ */
.mk-btn {
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 500;
  padding: 10px 18px; border-radius: 2px; border: 1px solid transparent; cursor: pointer;
  letter-spacing: -.005em; white-space: nowrap;
  transition: background var(--dur-micro) var(--ease-out), border-color var(--dur-micro) var(--ease-out);
}
.mk-btn-primary { background: var(--navy); color: #fff; }
.mk-btn-primary:hover { background: #001F3E; }
.mk-btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.mk-btn-ghost:hover { border-color: var(--steel); }
.mk-btn-ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.mk-btn-ghost-dark:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.06); }

/* ============ Hero ============ */
.mk-hero {
  position: relative;
  background: var(--deep-navy);
  color: #fff;
  min-height: 640px;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--deep-navy);
}
.mk-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(0.55) contrast(1.05) brightness(0.7);
}
.mk-hero-plate { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.mk-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.2) 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.2) 70%, transparent);
}
.mk-hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,26,51,.85) 0%, rgba(0,26,51,.7) 40%, rgba(0,26,51,.45) 70%, rgba(0,26,51,.25) 100%),
    radial-gradient(900px 500px at 95% 15%, rgba(184,134,11,.08), transparent 60%);
}
.mk-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--content-max); margin: 0 auto;
  padding: 120px 48px 96px;
}
.mk-eyebrow {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--steel); font-weight: 600; margin-bottom: 20px;
}
.mk-eyebrow-light { color: rgba(255,255,255,.65); }
.mk-display {
  font-family: var(--font-sans); font-weight: 600;
  font-size: 60px; line-height: 1.04; letter-spacing: -.025em;
  color: #fff; margin: 0 0 24px; max-width: 900px;
}
.mk-lead {
  font-family: var(--font-serif); font-size: 19px; line-height: 1.7;
  color: rgba(255,255,255,.85); margin: 0 0 36px; max-width: 640px;
}
.mk-hero-cta { display: flex; gap: 12px; }

/* ============ Sections ============ */
.mk-section {
  padding: 96px 48px;
  background: var(--bg1);
}
.mk-section-paper { background: #EEE9DD; }
.mk-section-dark { background: var(--deep-navy); color: #fff; }
.mk-section-white { background: #fff; }

.mk-section-head {
  max-width: var(--content-max); margin: 0 auto 56px;
}
.mk-section-head h2 {
  font-size: 40px; letter-spacing: -.015em; margin: 0 0 14px;
}
.mk-serif-lead {
  font-family: var(--font-serif); font-size: 19px; line-height: 1.7;
  color: var(--fg2); max-width: 640px; margin: 0;
}

/* ============ Services (Capabilities deliverables) ============ */
.mk-section-services { background: var(--ink); color: var(--paper); }
.mk-section-services .mk-eyebrow { color: var(--gold); }
.mk-section-services h2 { color: var(--paper); }
.mk-services-grid {
  max-width: var(--content-max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.mk-service {
  padding: 48px 36px 56px;
  border-right: 1px solid rgba(255,255,255,.14);
  display: flex; flex-direction: column;
  position: relative;
  transition: background var(--dur-ui) var(--ease-out);
}
.mk-service:last-child { border-right: 0; }
.mk-service:hover { background: rgba(255,255,255,.02); }
.mk-service-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mk-service-num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .2em;
  color: var(--gold); font-weight: 600;
  padding-top: 6px;
}
.mk-service-head svg {
  width: 28px; height: 28px;
  stroke: var(--paper); stroke-width: 1.25;
}
.mk-service-title {
  font-family: var(--font-serif);
  font-size: 26px; line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--paper);
  margin: 0 0 20px;
  max-width: 20ch;
}
.mk-service-body {
  font-family: var(--font-sans);
  font-size: 16px; line-height: 1.6;
  color: rgba(255,255,255,.78);
  margin: 0;
  max-width: none;
}

/* ============ Capabilities ============ */
.mk-grid-3 {
  max-width: var(--content-max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.mk-card {
  background: var(--paper); padding: 32px;
  transition: background var(--dur-ui) var(--ease-out);
}
.mk-card:hover { background: #FDFCF8; }
.mk-card-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); margin-bottom: 20px;
  border: 1px solid var(--border); border-radius: 2px;
  background: var(--bone);
}
.mk-card-icon svg { width: 20px; height: 20px; stroke-width: 1.5; }
.mk-card h4 { font-size: 19px; margin: 0 0 8px; letter-spacing: -.01em; }
.mk-card p { font-size: 16px; line-height: 1.6; color: var(--fg2); margin: 0 0 16px; max-width: none; }
.mk-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.mk-tag {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--steel); padding: 3px 7px;
  border: 1px solid var(--border); background: var(--bone);
}

/* ============ Mission ============ */
.mk-mission-inner {
  max-width: 880px; margin: 0 auto;
}
.mk-gold-rule { width: 48px; height: 2px; background: var(--gold); margin-bottom: 28px; }
.mk-h2-light {
  color: #fff; font-size: 44px; letter-spacing: -.02em; margin: 0 0 28px;
  max-width: 820px;
}
.mk-mission-body {
  font-family: var(--font-serif); font-size: 19px; line-height: 1.7;
  color: rgba(255,255,255,.88); max-width: 820px; margin: 0 0 24px;
}
.mk-attrib {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.55); font-weight: 600;
}

/* Credibility strip — 4-up under mission copy */
.mk-cred-strip {
  list-style: none; padding: 0; margin: 56px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--gold);
  position: relative;
}
.mk-cred-strip::before {
  content: ""; position: absolute;
  left: 0; right: 0; top: -2px;
  height: 2px; background: rgba(255,255,255,.14);
  z-index: -1;
}
.mk-cred-strip li {
  padding: 32px 28px 28px 0;
  border-right: 1px solid rgba(255,255,255,.14);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.mk-cred-strip li::before {
  content: ""; position: absolute;
  left: 0; top: -2px;
  width: 32px; height: 2px; background: var(--gold);
}
.mk-cred-strip li:first-child { padding-left: 0; }
.mk-cred-strip li:last-child { border-right: 0; padding-right: 0; }
.mk-cred-strip li + li { padding-left: 28px; }
.mk-cred-strip li + li::before { left: 28px; }
.mk-cred-k {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .18em;
  color: var(--gold);
  font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.mk-cred-k::after {
  content: ""; flex: 1; height: 1px;
  background: rgba(255,255,255,.18);
}
.mk-cred-v {
  font-family: var(--font-sans); font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,.92); font-weight: 500;
  letter-spacing: -.005em;
}

/* ============ Practitioner Lineage ============ */
.mk-practitioner-inner {
  max-width: 880px; margin: 0 auto;
}
.mk-h2-compact { margin: 0 0 16px; max-width: 820px; }
.mk-practitioner-intro {
  font-family: var(--font-serif); font-size: 19px; line-height: 1.68;
  color: var(--fg2); max-width: 820px; margin: 0 0 44px;
}
.mk-expertise-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px 56px; margin-bottom: 48px;
}
.mk-expertise-item {
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px; background: var(--bone); border: 1px solid var(--border);
  border-radius: 3px;
}
.mk-expertise-num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .18em;
  color: var(--gold);
  font-weight: 600;
}
.mk-expertise-title {
  font-family: var(--font-sans); font-size: 18px; line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0;
  font-weight: 600;
}
.mk-expertise-desc {
  font-family: var(--font-sans); font-size: 16px; line-height: 1.6;
  color: var(--fg2); margin: 0;
}

/* Credential pills — footer row */
.mk-cred-pills {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.mk-cred-pill {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--steel);
  padding: 3px 7px;
  border: 1px solid var(--border);
  background: var(--bone);
  white-space: nowrap;
}

/* ============ Past Performance ============ */
.mk-table-wrap {
  max-width: var(--content-max); margin: 0 auto;
  border: 1px solid var(--border); background: var(--paper);
}
.mk-table { width: 100%; border-collapse: collapse; font-family: var(--font-sans); }
.mk-table th {
  text-align: left; font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--steel); font-weight: 600;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  background: var(--bone);
}
.mk-table td {
  padding: 16px 20px; font-size: 16px;
  border-bottom: 1px solid var(--border); color: var(--fg1);
  vertical-align: top;
}
.mk-table tbody tr:last-child td { border-bottom: 0; }
.mk-mono { font-family: var(--font-mono); font-size: 12.5px; color: var(--fg2); }
.mk-pp-step {
  font-family: var(--font-mono); font-size: 12.5px;
  color: var(--gold); font-weight: 600;
  letter-spacing: .14em;
}

/* ============ Contact ============ */
.mk-contact-wrap {
  max-width: var(--content-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: start;
}
.mk-contact-wrap h2 { font-size: 40px; letter-spacing: -.015em; margin: 0 0 14px; }
.mk-contact-meta { margin: 32px 0 0; padding: 0; }
.mk-contact-meta > div {
  display: grid; grid-template-columns: 130px 1fr; gap: 16px;
  padding: 14px 0; border-top: 1px solid var(--border);
}
.mk-contact-meta > div:last-child { border-bottom: 1px solid var(--border); }
.mk-contact-meta dt {
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--steel); font-weight: 600; margin: 2px 0 0;
}
.mk-contact-meta dd { margin: 0; font-size: 16px; color: var(--fg1); }

.mk-form { background: var(--paper); border: 1px solid var(--border); padding: 32px; }
.mk-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mk-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.mk-field label { font-size: 12px; font-weight: 500; color: var(--fg1); letter-spacing: -.005em; }
.mk-field input, .mk-field textarea {
  font-family: var(--font-sans); font-size: 16px;
  padding: 10px 12px; border: 1px solid var(--border-strong);
  background: var(--paper); border-radius: 2px; color: var(--ink);
  outline: none; resize: vertical;
}
.mk-field input:focus, .mk-field textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 2px rgba(0,47,90,.15);
}
.mk-hint { font-size: 12px; color: var(--fg2); }
.mk-form-sent { text-align: left; }
.mk-form-sent h4 { font-size: 20px; margin: 6px 0 8px; }

/* ============ Regional reach (split: dark panel + map image) ============ */
.mk-section-regional {
  background: var(--bone);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(360px, 1fr) 1.3fr;
  min-height: 560px;
  overflow: hidden;
}
.mk-region-copy {
  padding: 96px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  justify-self: end;
  width: 100%;
}
.mk-region-copy .mk-h2-light { color: var(--ink); margin: 0 0 28px; max-width: 480px; }
.mk-region-lead {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--fg2);
  margin: 0;
  max-width: 500px;
}
.mk-region-image {
  position: relative;
  overflow: hidden;
  background: var(--bone);
}
.mk-region-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

/* ============ Who we serve (bone, gold dividers) ============ */
.mk-audience-grid {
  max-width: var(--content-max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mk-audience-col {
  padding: 0 36px;
  border-left: 2px solid var(--gold);
}
.mk-audience-col:first-child { padding-left: 0; border-left: 0; }
.mk-audience-col:last-child  { padding-right: 0; }
.mk-audience-num {
  display: block;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .2em; color: var(--gold);
  font-weight: 600; margin-bottom: 24px;
}
.mk-audience-title {
  font-family: var(--font-sans); font-size: 22px; line-height: 1.25;
  letter-spacing: -.01em; color: var(--ink);
  margin: 0 0 16px; font-weight: 600;
}
.mk-audience-body {
  font-family: var(--font-sans); font-size: 16px; line-height: 1.6;
  color: var(--fg2); margin: 0; max-width: none;
}

/* ============ Stakes (dark, light text + accent rules) ============ */
.mk-stakes-grid {
  max-width: var(--content-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid rgba(255,255,255,.14);
  background: transparent;
}
.mk-stakes-card {
  padding: 40px 36px 44px;
  border-right: 1px solid rgba(255,255,255,.14);
  position: relative;
}
.mk-stakes-card:last-child { border-right: 0; }
.mk-stakes-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
}
.mk-stakes-with::before { background: var(--gold); }
.mk-stakes-without::before { background: #C56A6A; }
.mk-stakes-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px; margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.mk-stakes-mark {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600;
}
.mk-stakes-with .mk-stakes-mark { color: var(--gold); }
.mk-stakes-without .mk-stakes-mark { color: #C56A6A; }
.mk-stakes-head svg { width: 18px; height: 18px; stroke-width: 1.5; }
.mk-stakes-with .mk-stakes-head svg { stroke: var(--gold); }
.mk-stakes-without .mk-stakes-head svg { stroke: #C56A6A; }
.mk-stakes-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.mk-stakes-list li {
  font-family: var(--font-sans); font-size: 16px; line-height: 1.6;
  color: rgba(255,255,255,.9);
  padding-left: 20px; position: relative;
}
.mk-stakes-list li::before {
  content: ""; position: absolute;
  left: 0; top: 12px;
  width: 10px; height: 1px;
}
.mk-stakes-with .mk-stakes-list li::before { background: var(--gold); }
.mk-stakes-without .mk-stakes-list li::before { background: #C56A6A; }

/* ============ Footer ============ */
.mk-footer {
  background: var(--deep-navy); color: rgba(255,255,255,.8);
  padding: 72px 48px 24px;
}
.mk-footer-inner {
  max-width: var(--content-max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 2fr; gap: 72px;
}
.mk-footer-logo { width: 96px; height: auto; margin-bottom: 20px; }
.mk-footer-brand p {
  font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.65);
  max-width: 320px; margin: 0 0 16px;
}
.mk-footer-certs {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.mk-footer-cert {
  height: 72px; width: auto; display: block;
}
.mk-footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 32px;
  align-items: start;
}
.mk-footer-cols h6 {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.45); font-weight: 600; margin: 0 0 14px;
}
.mk-footer-cols a {
  display: block; color: rgba(255,255,255,.85); text-decoration: none;
  font-size: 14px; padding: 6px 0;
}
.mk-footer-cols a:hover { color: #fff; }
.mk-footer-rule { height: 1px; background: rgba(255,255,255,.1); max-width: var(--content-max); margin: 48px auto 20px; }
.mk-footer-legal {
  max-width: var(--content-max); margin: 0 auto;
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.45);
}
.mk-footer-legal a {
  color: rgba(255,255,255,.7);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--dur-micro) var(--ease-out);
}
.mk-footer-legal a:hover { color: #fff; }

/* ============================================================================
   Mobile (≤ 768px)
   ========================================================================= */
.mk-nav-toggle { display: none; }

@media (max-width: 768px) {
  /* ---- Header / nav ---- */
  .mk-nav { padding: 0 20px; }
  .mk-nav-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 2px;
    cursor: pointer; padding: 0;
    color: var(--ink);
  }
  .mk-nav-toggle svg { width: 20px; height: 20px; stroke-width: 1.5; }
  .mk-nav-links {
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    margin-left: 0;
    padding: 8px 20px 16px;
    background: rgba(244,241,234,.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    gap: 0;
    display: none;
  }
  .mk-nav.is-open .mk-nav-links { display: flex; }
  .mk-nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    border-bottom-width: 1px;
  }
  .mk-nav-link:last-child { border-bottom: 0; }
  .mk-nav-link.is-active { color: var(--navy); }
  .mk-nav-right { display: none; }

  /* ---- Hero ---- */
  .mk-hero { min-height: 480px; }
  .mk-hero-inner { padding: 80px 24px 64px; }
  .mk-display { font-size: 36px; }
  .mk-lead { font-size: 16px; margin-bottom: 28px; }
  .mk-hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .mk-hero-cta .mk-btn { width: 100%; }

  /* ---- Sections ---- */
  .mk-section { padding: 64px 24px; }
  .mk-section-head { margin-bottom: 40px; }
  .mk-section-head h2 { font-size: 28px; }
  .mk-serif-lead { font-size: 16px; }

  /* ---- Capabilities ---- */
  .mk-grid-3 { grid-template-columns: 1fr; }
  .mk-card { padding: 24px; }

  /* ---- Mission ---- */
  .mk-mission-inner { padding: 0; }
  .mk-h2-light { font-size: 30px; }
  .mk-mission-body { font-size: 17px; }
  .mk-cred-strip {
    grid-template-columns: 1fr;
    border-top: 0;
    margin-top: 40px;
  }
  .mk-cred-strip::before { display: none; }
  .mk-cred-strip li,
  .mk-cred-strip li:first-child,
  .mk-cred-strip li:last-child,
  .mk-cred-strip li + li {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .mk-cred-strip li:last-child { border-bottom: 0; }
  .mk-cred-strip li::before,
  .mk-cred-strip li + li::before {
    left: 0; top: 0;
  }

  /* ---- Past Performance (collapse table to stacked rows) ---- */
  .mk-table thead { display: none; }
  .mk-table, .mk-table tbody { display: block; }
  .mk-table tr {
    display: block;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
  }
  .mk-table tbody tr:last-child { border-bottom: 0; }
  .mk-table td {
    display: block;
    padding: 2px 0;
    border: 0;
    width: auto !important;
  }

  /* ---- Services (dark, 3-up) -> 1 col ---- */
  .mk-services-grid { grid-template-columns: 1fr; }
  .mk-service,
  .mk-service:last-child {
    padding: 32px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .mk-service:last-child { border-bottom: 0; }

  /* ---- Regional (split -> stacked) ---- */
  .mk-section-regional {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .mk-region-copy {
    padding: 64px 24px 32px;
    max-width: none;
    justify-self: stretch;
  }
  .mk-region-copy .mk-h2-light { font-size: 30px; }
  .mk-region-image { height: 240px; }

  /* ---- Practitioner Lineage (2-col grid -> 1 col) ---- */
  .mk-practitioner-inner { padding: 0; }
  .mk-h2-compact { font-size: 28px; }
  .mk-practitioner-intro { font-size: 17px; margin-bottom: 32px; }
  .mk-expertise-grid {
    grid-template-columns: 1fr;
    gap: 32px 0;
    margin-bottom: 32px;
  }
  .mk-expertise-title { font-size: 16px; }
  .mk-expertise-desc { font-size: 13.5px; }
  .mk-cred-pills { padding-top: 24px; gap: 8px; }
  .mk-cred-pill { font-size: 11px; padding: 6px 12px; }

  /* ---- Audience (3-up gold dividers -> stacked w/ gold tab) ---- */
  .mk-audience-grid { grid-template-columns: 1fr; gap: 0; }
  .mk-audience-col,
  .mk-audience-col:first-child,
  .mk-audience-col:last-child {
    padding: 28px 0 0;
    margin-top: 24px;
    border-left: 0;
    border-top: 2px solid var(--gold);
  }
  .mk-audience-col:first-child { margin-top: 0; }

  /* ---- Stakes (2-up -> stacked) ---- */
  .mk-stakes-grid { grid-template-columns: 1fr; }
  .mk-stakes-card,
  .mk-stakes-card:last-child {
    padding: 32px 24px 36px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .mk-stakes-card:last-child { border-bottom: 0; }

  /* ---- Contact ---- */
  .mk-contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .mk-contact-wrap h2 { font-size: 28px; }
  .mk-form { padding: 24px; }
  .mk-field-row { grid-template-columns: 1fr; }

  /* ---- Footer ---- */
  .mk-footer { padding: 56px 24px 24px; }
  .mk-footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .mk-footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .mk-footer-legal {
    flex-direction: column;
    gap: 6px;
    text-align: left;
  }
}

/* ============ Phone (≤ 480px) ============ */
@media (max-width: 480px) {
  .mk-display { font-size: 32px; }
  .mk-section-head h2,
  .mk-contact-wrap h2 { font-size: 24px; }
  .mk-h2-light,
  .mk-region-copy .mk-h2-light,
  .mk-h2-compact { font-size: 24px; }
  .mk-footer-cols { grid-template-columns: 1fr; }
}
