/*
 * 401ksandiego.com â€” Custom Stylesheet
 * Theme: GeneratePress or Kadence (blank canvas / no page builder)
 * Load order: after theme stylesheet via wp_enqueue_style()
 * ------------------------------------------------------------ */

/* â”€â”€ TOKENS â”€â”€ */
:root {
  --ink:        #2A2025;
  --ink-mid:    #3D3040;
  --ink-light:  #6A5A68;
  --rule:       #E4DDD6;
  --cream:      #F9F5EF;
  --white:      #FFFFFF;
  --gold:       #C49A3C;
  --gold-light: #D4AA55;
}

/* â”€â”€ RESET / BASE â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Hide theme header/nav â€” we use our own */
.site-header,
.main-navigation,
.site-branding {
  display: none !important;
}

/* Remove default WP content padding if present */
.site-content,
.entry-content,
.wp-block-group {
  padding: 0 !important;
  max-width: 100% !important;
}

/* â”€â”€ TOP BAR â”€â”€ */
.mrc-topbar {
  background: var(--ink);
  padding: 10px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.mrc-topbar__left {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.mrc-topbar__left strong { color: var(--white); }
.mrc-topbar__right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.mrc-topbar__phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--white);
  text-decoration: none;
}
.mrc-topbar__link {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .2s;
}
.mrc-topbar__link:hover { color: var(--white); }

/* â”€â”€ CUSTOM NAV â”€â”€ */
.mrc-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 2px solid var(--ink);
  padding: 0 48px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 64px;
}
.mrc-nav__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  padding: 12px 0;
}
.mrc-nav__logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #2A2025;
  line-height: 1;
}
.mrc-nav__logo-main span { color: var(--gold); }
.mrc-nav__logo-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-top: 3px;
}

/* Desktop links */
.mrc-nav__links {
  display: flex;
  align-items: stretch;
  list-style: none;
  gap: 0;
}
.mrc-nav__links li a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
  margin-bottom: -2px;
}
.mrc-nav__links li a:hover,
.mrc-nav__links li a:focus {
  color: #2A2025;
  border-bottom-color: #2A2025;
}

/* CTA button */
.mrc-nav__cta-wrap {
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.mrc-nav__cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 10px 20px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.mrc-nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger button (hidden on desktop) */
.mrc-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.mrc-nav__hamburger .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform .25s, opacity .25s;
  transform-origin: center;
}
.mrc-nav__hamburger .bar + .bar { margin-top: 5px; }

/* Hamburger â†’ X animation */
.mrc-nav__hamburger[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mrc-nav__hamburger[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mrc-nav__hamburger[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* Mobile drawer */
.mrc-nav__mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--ink);
  z-index: 190;
  flex-direction: column;
}
.mrc-nav__mobile-menu.is-open { display: flex; }
.mrc-nav__mobile-menu li { list-style: none; border-bottom: 1px solid var(--rule); }
.mrc-nav__mobile-menu li a {
  display: block;
  padding: 16px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.mrc-nav__mobile-menu li a:hover,
.mrc-nav__mobile-menu li a:focus { background: var(--cream); color: #2A2025; }
.mrc-nav__mobile-cta {
  padding: 16px 24px;
}
.mrc-nav__mobile-cta a {
  display: block;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: #2A2025;
  color: var(--white);
  padding: 14px;
  text-decoration: none;
}

/* â”€â”€ BUTTONS â”€â”€ */
.mrc-btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: #2A2025;
  color: var(--white);
  padding: 16px 36px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.mrc-btn-primary:hover { background: #3D3040; transform: translateY(-2px); }

.mrc-btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: transparent;
  color: #2A2025;
  padding: 15px 36px;
  text-decoration: none;
  border: 2px solid #2A2025;
  display: inline-block;
  transition: all .2s;
}
.mrc-btn-secondary:hover { background: #2A2025; color: var(--white); }

.mrc-btn-gold {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 16px 36px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .15s;
}
.mrc-btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

/* â”€â”€ HERO â”€â”€ */
.mrc-hero {
  display: grid;
  grid-template-columns: 1fr 320px 340px;
  min-height: auto;
  border-bottom: 2px solid var(--ink);
}
.mrc-hero__left {
  padding: 48px 64px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}
.mrc-hero__left::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 1px; height: 100%;
  background: var(--ink);
}
.mrc-hero__kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mrc-hero__kicker::before {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--gold);
}
.mrc-hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.08;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -.02em;
}
.mrc-hero__headline em { font-style: italic; color: #2A2025; }
.mrc-hero__sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 520px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}
.mrc-hero__sub strong { font-weight: 600; color: var(--ink); }
.mrc-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.mrc-hero__right {
  background: var(--cream);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.mrc-hero__right-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 20px;
}
.mrc-sit-item {
  border-top: 1px solid var(--rule);
  padding: 18px 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  transition: all .2s;
}
.mrc-sit-item:last-of-type { border-bottom: 1px solid var(--rule); }
.mrc-sit-item:hover .mrc-sit-item__arrow { transform: translateX(4px); color: #2A2025; }
.mrc-sit-item:hover .mrc-sit-item__title { color: #2A2025; }
.mrc-sit-item__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--rule);
  line-height: 1;
  min-width: 34px;
  margin-top: 2px;
}
.mrc-sit-item__content { flex: 1; }
.mrc-sit-item__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 3px;
  transition: color .2s;
  line-height: 1.2;
}
.mrc-sit-item__desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.5;
}
.mrc-sit-item__arrow {
  font-size: 16px;
  color: var(--ink-light);
  margin-top: 4px;
  transition: transform .2s, color .2s;
}

/* â”€â”€ MARQUEE â”€â”€ */
.mrc-marquee {
  background: var(--ink);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.mrc-marquee__inner {
  display: inline-block;
  animation: mrcMarquee 30s linear infinite;
}
.mrc-marquee__inner span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  padding: 0 28px;
}
.mrc-marquee__inner span.is-accent { color: var(--gold-light); }
@keyframes mrcMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* â”€â”€ SECTION SHARED â”€â”€ */
.mrc-section { position: relative; }
.mrc-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.mrc-section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mrc-section-label::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--gold);
}
.mrc-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 18px;
}
.mrc-section-title em { font-style: italic; color: #2A2025; }
.mrc-section-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.85;
  max-width: 600px;
}

/* â”€â”€ PAIN SECTION â”€â”€ */
.mrc-pain { padding: 96px 0; border-bottom: 1px solid var(--rule); }
.mrc-pain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.mrc-pain__list { list-style: none; margin-top: 44px; }
.mrc-pain__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}
.mrc-pain__item:last-child { border-bottom: 1px solid var(--rule); }
.mrc-pain__check {
  width: 22px; height: 22px;
  border: 2px solid #2A2025;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 11px;
  color: #2A2025;
  font-weight: 700;
}
.mrc-pain__text {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.6;
}
.mrc-pain__text strong { color: var(--ink); font-weight: 600; }
.mrc-pain__callout {
  background: var(--ink);
  padding: 44px 40px;
  position: relative;
  margin-top: 48px;
}
.mrc-pain__callout::before {
  content: '"';
  position: absolute;
  top: -28px; left: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  color: #3D3040;
  line-height: 1;
  opacity: .35;
}
.mrc-pain__quote {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.mrc-pain__attr {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.mrc-pain__cta-block {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mrc-pain__cta-label {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* â”€â”€ WORKBENCH SECTION â”€â”€ */
.mrc-workbench {
  padding: 96px 0;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.mrc-workbench__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
/* Dashboard mock */
.mrc-wb-visual {
  background: #0B1F3A;
  border: 1px solid rgba(46,125,214,.25);
  padding: 24px;
  box-shadow: 10px 10px 0 var(--rule);
  position: relative;
}
.mrc-wb-visual__notice {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  text-align: center;
  border: 1px dashed rgba(255,255,255,.15);
  padding: 6px;
  margin-bottom: 16px;
}
.mrc-wb-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
}
.mrc-wb-dot { width: 9px; height: 9px; border-radius: 50%; }
.mrc-wb-dot--r { background: #FF5F57; }
.mrc-wb-dot--y { background: #FFBD2E; }
.mrc-wb-dot--g { background: #28CA41; }
.mrc-wb-titlebar {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.3);
  margin-left: 6px;
}
.mrc-wb-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.mrc-wb-metric {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 10px;
}
.mrc-wb-metric__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 4px;
}
.mrc-wb-metric__val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.mrc-wb-metric__val--green { color: #4ADE80; }
.mrc-wb-metric__val--yellow { color: #FCD34D; }
.mrc-wb-table-head,
.mrc-wb-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 76px;
  gap: 6px;
  padding: 7px 0;
  align-items: center;
}
.mrc-wb-table-head {
  border-bottom: 1px solid rgba(46,125,214,.3);
  margin-bottom: 2px;
}
.mrc-wb-table-head span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  color: #2E7DD6;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.mrc-wb-table-row { border-bottom: 1px solid rgba(255,255,255,.05); }
.mrc-wb-table-row span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,.4);
}
.mrc-wb-table-row span:first-child { color: rgba(255,255,255,.8); }
.mrc-wb-badge {
  display: inline-block;
  padding: 2px 7px;
  font-size: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mrc-wb-badge--pass  { background: rgba(74,222,128,.15); color: #4ADE80; }
.mrc-wb-badge--watch { background: rgba(252,211,77,.15);  color: #FCD34D; }
.mrc-wb-badge--flag  { background: rgba(248,113,113,.15); color: #F87171; }
/* Workbench right copy */
.mrc-wb-features { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.mrc-wb-feat { display: flex; gap: 14px; align-items: flex-start; }
.mrc-wb-feat__icon {
  width: 30px; height: 30px;
  background: #2A2025;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--white);
  margin-top: 2px;
}
.mrc-wb-feat__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 3px;
}
.mrc-wb-feat__body { font-size: 13px; font-weight: 300; color: var(--ink-mid); line-height: 1.7; }
.mrc-wb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #2A2025;
  text-decoration: none;
  border-bottom: 2px solid #2A2025;
  padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.mrc-wb-link::after { content: '\2192'; transition: transform .2s; }
.mrc-wb-link:hover { color: var(--gold); border-bottom-color: var(--gold); }
.mrc-wb-link:hover::after { transform: translateX(4px); }

/* â”€â”€ SERVICES â”€â”€ */
.mrc-services { padding: 96px 0; border-bottom: 1px solid var(--rule); }
.mrc-services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: end;
}
.mrc-services__header-right {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.8;
}
.mrc-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

/* â”€â”€ SERVICE CARDS â”€â”€ */
.mrc-service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--rule);
  padding: 36px 32px;
  background: var(--white);
  transition: border-color .25s, box-shadow .25s, transform .2s;
  position: relative;
}
.mrc-service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.mrc-service-card__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 14px;
}
.mrc-service-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.mrc-service-card__body {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.mrc-service-card__link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  display: inline-block;
  padding-bottom: 2px;
}

.mrc-svc-card {
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background .2s;
  position: relative;
  overflow: hidden;
}
.mrc-svc-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: #2A2025;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.mrc-svc-card:hover { background: var(--cream); }
.mrc-svc-card:hover::before { transform: scaleX(1); }
.mrc-svc-card:hover .mrc-svc-card__arrow { transform: translateX(4px); color: #2A2025; }
.mrc-svc-card:hover .mrc-svc-card__title { color: #2A2025; }
.mrc-svc-card__tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.mrc-svc-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 12px;
  transition: color .2s;
  flex: 1;
}
.mrc-svc-card__body {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 18px;
}
.mrc-svc-card__arrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: transform .2s, color .2s;
}
.mrc-svc-card__arrow::after { content: '\2192'; }

/* â”€â”€ HONEST / WHY ME â”€â”€ */
.mrc-honest {
  padding: 96px 0;
  background: var(--cream);
  border-bottom: 2px solid var(--gold);
}
.mrc-honest__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.mrc-honest .mrc-section-title  { color: var(--ink); }
.mrc-honest .mrc-section-body   { color: var(--ink-light); margin-top: 18px; }
.mrc-honest .mrc-section-label  { color: var(--gold); }
.mrc-honest .mrc-section-label::before { background: var(--gold); }
.mrc-honest__callout {
  background: rgba(184,136,42,.15);
  border-left: 4px solid var(--gold-light);
  padding: 18px 22px;
  margin-top: 28px;
}
.mrc-honest__callout p {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}
.mrc-honest__stats { display: flex; flex-direction: column; gap: 20px; }
.mrc-honest__stat {
  border: 1px solid var(--rule);
  padding: 26px 30px;
  background: var(--white);
  transition: border-color .3s;
}
.mrc-honest__stat:hover { border-color: var(--gold); }
.mrc-honest__stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 7px;
}
.mrc-honest__stat-val span { font-size: 22px; color: var(--gold-light); }
.mrc-honest__stat-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.6;
}

/* â”€â”€ PROCESS â”€â”€ */
.mrc-process { padding: 96px 0; border-bottom: 1px solid var(--rule); }
.mrc-process__header { text-align: center; margin-bottom: 60px; }
.mrc-process__header .mrc-section-label { justify-content: center; }
.mrc-process__header .mrc-section-label::before { display: none; }
.mrc-process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.mrc-process__steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 10%; right: 10%;
  height: 1px;
  background: var(--rule);
  z-index: 0;
}
.mrc-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  position: relative;
  z-index: 1;
}
.mrc-process__num {
  width: 54px; height: 54px;
  background: var(--white);
  border: 2px solid #2A2025;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #2A2025;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.mrc-process__step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 7px;
}
.mrc-process__step-body {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.6;
}

/* â”€â”€ CTA STRIP â”€â”€ */
.mrc-cta-strip {
  padding: 76px 0;
  background: var(--cream);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.mrc-cta-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.mrc-cta-strip__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 10px;
}
.mrc-cta-strip__sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-mid);
  max-width: 560px;
  line-height: 1.8;
}
.mrc-cta-strip__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.mrc-cta-strip__phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink-light);
  text-decoration: none;
  text-align: center;
}
.mrc-cta-strip__phone strong { display: block; font-size: 17px; color: var(--ink); }

/* â”€â”€ FOOTER â”€â”€ */
.mrc-footer {
  background: var(--ink);
  padding: 60px 48px 32px;
}
.mrc-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mrc-footer__brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.mrc-footer__brand span { color: var(--gold-light); }
.mrc-footer__desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.4);
  line-height: 1.8;
  margin-bottom: 20px;
}
.mrc-footer__contact a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  margin-bottom: 5px;
  transition: color .2s;
}
.mrc-footer__contact a:hover { color: var(--white); }
.mrc-footer__col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.mrc-footer__links { list-style: none; }
.mrc-footer__links li { margin-bottom: 9px; }
.mrc-footer__links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.mrc-footer__links a:hover { color: var(--white); }
.mrc-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.mrc-footer__legal {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,.28);
  line-height: 1.8;
  max-width: 660px;
}
.mrc-footer__wb-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  padding: 10px 16px;
  transition: all .2s;
  white-space: nowrap;
}
.mrc-footer__wb-link:hover { color: var(--white); border-color: rgba(255,255,255,.4); }

/* â”€â”€ REVEAL ANIMATIONS â”€â”€ */
.mrc-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: mrcReveal .65s ease forwards;
}
@keyframes mrcReveal {
  to { opacity: 1; transform: translateY(0); }
}
.mrc-delay-1 { animation-delay: .1s; }
.mrc-delay-2 { animation-delay: .25s; }
.mrc-delay-3 { animation-delay: .4s; }
.mrc-delay-4 { animation-delay: .55s; }

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 960px) {
  .mrc-topbar { padding: 10px 20px; flex-direction: column; gap: 6px; text-align: center; }
  .mrc-nav { padding: 0 20px; position: relative; flex-wrap: wrap; }
  .mrc-nav__links { display: none; }        /* hidden on mobile */
  .mrc-nav__cta-wrap { display: none; }     /* hidden on mobile â€” replicated in mobile menu */
  .mrc-nav__hamburger { display: flex; }

  .mrc-hero { grid-template-columns: 1fr; min-height: auto; }
  .mrc-hero__middle { display: none; }
  .mrc-hero__left { padding: 56px 20px 44px; }
  .mrc-hero__left::after { display: none; }
  .mrc-hero__right { padding: 36px 20px; }

  .mrc-section-inner { padding: 0 20px; }

  .mrc-pain__grid { grid-template-columns: 1fr; }
  .mrc-pain__callout { margin-top: 40px; }

  .mrc-workbench__inner { grid-template-columns: 1fr; }

  .mrc-services__header { grid-template-columns: 1fr; gap: 16px; }
  .mrc-services__grid { grid-template-columns: 1fr 1fr; }

  .mrc-honest__inner { grid-template-columns: 1fr; }

  .mrc-process__steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .mrc-process__steps::before { display: none; }

  .mrc-cta-strip__inner { grid-template-columns: 1fr; }
  .mrc-cta-strip__actions { align-items: flex-start; }

  .mrc-footer { padding: 44px 20px 28px; }
  .mrc-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .mrc-services__grid { grid-template-columns: 1fr; }
  .mrc-process__steps { grid-template-columns: 1fr; }
  .mrc-footer__top { grid-template-columns: 1fr; }
  .mrc-hero__headline { font-size: 30px; }
}

/* â”€â”€ WORKBENCH LIGHT MOCKUP (added) â”€â”€ */
/* â”€â”€ WORKBENCH LIGHT MOCKUP â”€â”€ */
.mrc-wb-light {
  background: #FFFFFF;
  border: 1px solid #E2E8EE;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.04),
    0 12px 32px rgba(0,0,0,0.08),
    8px 8px 0 #E2E8EE;
  font-family: 'Barlow', sans-serif;
}

/* Header */
.mrc-wb-light__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #E2E8EE;
  background: #F8F5F0;
}
.mrc-wb-light__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #0F1923;
}
.mrc-wb-light__subtitle {
  font-size: 11px;
  font-weight: 300;
  color: #8A9BB0;
  margin-top: 2px;
  letter-spacing: .04em;
}
.mrc-wb-light__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1A6B3A;
  background: rgba(26,107,58,0.08);
  border: 1px solid rgba(26,107,58,0.2);
  padding: 5px 10px;
  border-radius: 4px;
}
.mrc-wb-light__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  animation: wbPulse 2s ease-in-out infinite;
}
@keyframes wbPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Summary chips */
.mrc-wb-light__chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #E2E8EE;
}
.mrc-wb-light__chip {
  padding: 14px 16px;
  border-right: 1px solid #E2E8EE;
  text-align: center;
}
.mrc-wb-light__chip:last-child { border-right: none; }
.mrc-wb-light__chip-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #0F1923;
  line-height: 1;
  margin-bottom: 3px;
}
.mrc-wb-light__chip--green .mrc-wb-light__chip-val { color: #16A34A; }
.mrc-wb-light__chip--yellow .mrc-wb-light__chip-val { color: #CA8A04; }
.mrc-wb-light__chip--orange .mrc-wb-light__chip-val { color: #EA580C; }
.mrc-wb-light__chip-label {
  font-size: 10px;
  font-weight: 400;
  color: #8A9BB0;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Table */
.mrc-wb-light__table {
  overflow: hidden;
}
.mrc-wb-light__row {
  display: grid;
  grid-template-columns: 72px 1fr 200px 80px;
  align-items: center;
  border-bottom: 1px solid #F0F4F8;
  transition: background .15s;
}
.mrc-wb-light__row:hover:not(.mrc-wb-light__row--head) {
  background: #F8FBFF;
}
.mrc-wb-light__row--head {
  background: #F8F5F0;
  border-bottom: 1px solid #E2E8EE;
}
.mrc-wb-light__col {
  padding: 10px 14px;
  font-size: 13px;
  color: #2C3E50;
  font-weight: 300;
}
.mrc-wb-light__row--head .mrc-wb-light__col {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8A9BB0;
}
.mrc-wb-light__col--ticker {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .06em;
  color: #1A4B8C;
}
.mrc-wb-light__col--status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 400;
  color: #2C3E50;
}
.mrc-wb-light__col--quarter {
  font-size: 11px;
  color: #8A9BB0;
  text-align: right;
}

/* Status dots */
.mrc-wb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mrc-wb-dot--green  { background: #22C55E; }
.mrc-wb-dot--yellow { background: #EAB308; }
.mrc-wb-dot--orange { background: #F97316; }
.mrc-wb-dot--red    { background: #EF4444; }

/* Compliance notice */
.mrc-wb-light__notice {
  padding: 10px 16px;
  font-size: 10px;
  font-weight: 300;
  color: #A0AABB;
  font-style: italic;
  border-top: 1px solid #E2E8EE;
  background: #FAFAFA;
  line-height: 1.5;
  text-align: center;
}

/* Responsive â€” collapse table on small screens */
@media (max-width: 700px) {
  .mrc-wb-light__row {
    grid-template-columns: 60px 1fr 140px;
  }
  .mrc-wb-light__col--quarter { display: none; }
  .mrc-wb-light__chips { grid-template-columns: 1fr 1fr; }
  .mrc-wb-light__chip { border-bottom: 1px solid #E2E8EE; }
}

@media (max-width: 480px) {
  .mrc-wb-light__row {
    grid-template-columns: 56px 1fr;
  }
  .mrc-wb-light__col--status { display: none; }
}
/* â”€â”€ KADENCE BLANK PAGE FIXES â”€â”€ */
.site-header,
.main-navigation,
#masthead,
.site-branding,
.kadence-sticky-header,
header.site-header,
.header-wrap {
  display: none !important;
}

.site-content,
.content-wrap,
.wp-site-blocks,
.entry-content,
.post-content,
.inside-article,
.content-area,
#primary,
.grid-container,
main.site-main {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

body {
  margin: 0 !important;
  padding: 0 !important;
}

/* â”€â”€ HERO TRUST STRIP â”€â”€ */
.mrc-hero__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.mrc-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.mrc-hero__trust-icon {
  color: var(--gold);
  font-size: 14px;
}

.mrc-nav__logo-img { height: 48px; width: auto; max-width: none; }
header#masthead { display: none !important; }

/* â”€â”€ HERO QUOTE BLOCK â”€â”€ */
.mrc-hero__quote {
  margin-top: 40px;
  padding: 28px 32px;
  border-left: 4px solid #C49A3C;
  background: #F9F5EF;
}
.mrc-hero__quote p {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-style: italic;
  color: #3D3040;
  line-height: 1.7;
}

/* â”€â”€ HERO MIDDLE COLUMN â”€â”€ */
.mrc-hero__middle {
  background: #2A2025;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.mrc-hero__quote {
  margin-top: 0;
  padding: 0;
  border-left: 4px solid #C49A3C;
  background: transparent;
  padding-left: 24px;
}
.mrc-hero__quote p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,.9);
  line-height: 1.75;
}
.mrc-hero__quote-attr {
  margin-top: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #C49A3C;
}
/* ============================================================
   MRC PATCH — stability + accessibility + reduced motion
   Paste at end of stylesheet
   ============================================================ */

/* 1) Keyboard focus: make it obvious (professional + accessible) */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* 2) Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mrc-reveal { animation: none !important; opacity: 1 !important; transform: none !important; }
  .mrc-marquee__inner { animation: none !important; }
  .mrc-topbar__link,
  .mrc-nav__links li a,
  .mrc-nav__cta,
  .mrc-btn-primary,
  .mrc-btn-secondary,
  .mrc-btn-gold,
  .mrc-sit-item__arrow,
  .mrc-service-card {
    transition: none !important;
  }
}

/* 3) HERO QUOTE: prevent the "same class, two different definitions" mess
      We standardize base quote styles, then use a modifier for the middle column. */
.mrc-hero__quote {
  margin-top: 0;
  padding: 0;
  border-left: 4px solid var(--gold);
  background: transparent;
  padding-left: 24px;
}
.mrc-hero__quote p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,.9);
  line-height: 1.75;
}
.mrc-hero__quote-attr {
  margin-top: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Optional: if you add a "block" quote somewhere else later, use this class */
.mrc-hero__quote--block {
  background: var(--cream);
  padding: 28px 32px;
  border-left: 4px solid var(--gold);
}
.mrc-hero__quote--block p {
  color: var(--ink-mid);
  font-size: 17px;
  line-height: 1.7;
}
.mrc-hero__quote--block .mrc-hero__quote-attr {
  color: var(--gold);
}

/* 4) WORKBENCH DOT collision fix:
      Your site has multiple .mrc-wb-dot definitions.
      We force the dots INSIDE the light mockup to behave consistently. */
.mrc-wb-light .mrc-wb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mrc-wb-light .mrc-wb-dot--green  { background: #22C55E; }
.mrc-wb-light .mrc-wb-dot--yellow { background: #EAB308; }
.mrc-wb-light .mrc-wb-dot--orange { background: #F97316; }
.mrc-wb-light .mrc-wb-dot--red    { background: #EF4444; }

/* 5) Mobile menu: add subtle separation + ensure it sits above content */
@media (max-width: 960px) {
  .mrc-nav__mobile-menu {
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
  }
}

/* 6) HERO squeeze relief: hide middle quote earlier on smaller laptops
      (prevents cramped 3-column layout around ~1100px wide) */
@media (max-width: 1200px) {
  .mrc-hero { grid-template-columns: 1fr 340px; }
  .mrc-hero__middle { display: none; }
  .mrc-hero__left::after { display: none; }
}
/* ===== Hamburger layout stability (mobile) ===== */
@media (max-width: 960px) {
  .mrc-nav {
    flex-wrap: nowrap;           /* prevents logo/button from dropping */
    align-items: center;         /* vertically centers items */
  }

  .mrc-nav__logo { padding: 10px 0; }
  .mrc-nav__hamburger { margin-left: auto; }
}
/* ===== Hamburger icon stability ===== */
.mrc-nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;              /* replaces margin-top spacing */
  padding: 10px;
}

.mrc-nav__hamburger .bar + .bar { margin-top: 0; } /* kill old spacing */

/* Make transforms predictable */
.mrc-nav__hamburger .bar {
  width: 24px;
  height: 2px;
  border-radius: 2px;
}

/* Tune the X conversion to match the new gap-based layout */
.mrc-nav__hamburger[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mrc-nav__hamburger[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mrc-nav__hamburger[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* ===== Mobile layout rescue: nav + hero/buttons ===== */

/* 1) NAV: allow flex to behave on small screens without wrapping chaos */
@media (max-width: 960px) {
  .mrc-nav {
    flex-wrap: nowrap;          /* keep one row */
    justify-content: space-between;
    align-items: center;
    min-width: 0;
  }

  .mrc-nav__logo {
    flex: 1 1 auto;             /* logo can shrink */
    min-width: 0;
  }

  .mrc-nav__logo-img {
    height: 40px;               /* smaller so it fits */
    width: auto;
    max-width: 70vw;            /* prevent logo from pushing hamburger off-screen */
  }

  .mrc-nav__hamburger {
    flex: 0 0 auto;             /* hamburger never shrinks */
    margin-left: 12px;
  }
}

/* 2) Prevent any stray overflow from grids/cards/images */
img, svg, video, iframe {
  max-width: 100%;
  height: auto;
}

/* 3) HERO: make CTAs behave on narrow screens (no weird half-width buttons) */
@media (max-width: 540px) {
  .mrc-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .mrc-btn-primary,
  .mrc-btn-secondary {
    width: 100%;
    text-align: center;
    padding-left: 18px;
    padding-right: 18px;
  }
}
/* ============================================================
   ROLLBACK: restore original mobile layout behavior
   Keeps hamburger X fix, removes my layout overrides
   Paste at very end
   ============================================================ */

/* Keep the hamburger icon fix (gap-based bars) */
.mrc-nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.mrc-nav__hamburger .bar + .bar { margin-top: 0; }

/* IMPORTANT: Undo layout forcing on mobile */
@media (max-width: 960px) {
  /* Put nav back to a normal mobile flex row */
  .mrc-nav {
    flex-wrap: wrap;          /* allow wrap again */
    align-items: center;
    justify-content: space-between;
  }

  /* Remove my shrinking constraints */
  .mrc-nav__logo { flex: 0 0 auto; min-width: auto; }
  .mrc-nav__logo-img { height: 48px; max-width: none; }

  /* Hamburger should just sit on the right */
  .mrc-nav__hamburger { margin-left: auto; }

  /* Mobile menu should still span full width */
  .mrc-nav__mobile-menu { width: 100%; }
}

/* Undo my earlier "hide hero middle at 1200" if it caused weird flow */
@media (max-width: 1200px) {
  .mrc-hero { grid-template-columns: 1fr; }
  .mrc-hero__middle { display: none; }
  .mrc-hero__left::after { display: none; }
}
/* ============================================================
   PATCH: hero micro + sane wrapping + overflow guard
   Paste at very end
   ============================================================ */

/* HERO micro line (the “kind of your responsibility” sentence) */
.mrc-hero__micro{
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-light);
  max-width: 520px;
}
.mrc-hero__micro strong{ color: var(--ink); font-weight: 600; }

/* Word wrapping safety: long words/URLs/uppercase nav labels */
.mrc-section,
.mrc-hero,
.mrc-nav,
.mrc-footer,
.mrc-service-card,
.mrc-wb-light{
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

/* Tight uppercase tracking on very small screens so words fit */
@media (max-width: 480px){
  .mrc-nav__mobile-menu li a,
  .mrc-hero__trust-item,
  .mrc-section-label,
  .mrc-service-card__title{
    letter-spacing: .06em; /* was sometimes .1-.25em; this prevents ugly wrapping */
  }
}

/* Prevent “mystery horizontal scroll” */
body { overflow-x: hidden; }
/* HERO body text slightly stronger */
.mrc-hero__sub {
  font-size: 17px;
  line-height: 1.75;
}

@media (min-width: 1200px){
  .mrc-hero__headline {
    font-size: 64px;
    line-height: 1.05;
  }
}